Forum: PHP Jul 13th, 2009 |
| Replies: 4 Views: 537 Yes, I've seen the offset function, might do what you suggested as I think it's the best way. Thanks for your suggestion. |
Forum: PHP Jul 13th, 2009 |
| Replies: 4 Views: 537 Ok thanks, will look into this timezone method via the javascript Date object a bit more. |
Forum: PHP Jul 11th, 2009 |
| Replies: 4 Views: 537 I am building a project management website which enables users from around the world to login and automatically register their time against various work projects. I need to save their login time to... |
Forum: PHP Jul 9th, 2009 |
| Replies: 2 Views: 197 |
Forum: PHP Jul 9th, 2009 |
| Replies: 2 Views: 197 In my webpage I'm using the PHP function mysql_fetch_array to check if records are successfully retrieved from the database. If records are returned then I can assign variables with the database... |
Forum: PHP Jul 1st, 2009 |
| Replies: 10 Views: 705 Ok, I found it... in the cms there's an email cloacking plug-in. All I needed to do was disable it. Thanks for pointing me in the right direction, and thanks to everyone for their suggestions and... |
Forum: PHP Jul 1st, 2009 |
| Replies: 10 Views: 705 Exactly!! Thanks for your suggestion. I'm using Joomla cms and I did some research after reading your post and have just discovered that it does indeed use an inbuilt javascript obfuscation, however,... |
Forum: PHP Jul 1st, 2009 |
| Replies: 10 Views: 705 Thanks for the code change suggestion, however, I don't code this javascript into my webpage in the first place... that's the problem. I don't know where this javascript script comes from, and I... |
Forum: PHP Jul 1st, 2009 |
| Replies: 10 Views: 705 I'm developing a joomla CMS website, so the editor is an inbuilt editor. I don't think the problem is with the editor itself as all PHP code is saved as is. I simply code echo "myemail@whatever.com"... |
Forum: PHP Jul 1st, 2009 |
| Replies: 10 Views: 705 Whenever I echo or print a string containing an email address to my webpage the HTML code automatically parses the text and shows it as a "mailto" link.
If I use... echo "Hello";
it prints... |
Forum: PHP Jun 16th, 2009 |
| Replies: 17 Views: 1,422 The input button is hidden because apparently it's still needed (triggered) upon form submit.
Thanks for the helpful link. |
Forum: PHP Jun 16th, 2009 |
| Replies: 17 Views: 1,422 Well in this case the hidden button is the submit button which is triggered by the link...
<input type="hidden" name="form_submitted" value="true">
And yes, I'm using a link to style with... |
Forum: PHP Jun 16th, 2009 |
| Replies: 17 Views: 1,422 Ok, it's very strange but now I'm finding that sometimes it works, and sometimes it doesn't, about a 50% success rate!! This is either when I hit Enter (in the password field) or clicking the Submit... |
Forum: PHP Jun 15th, 2009 |
| Replies: 17 Views: 1,422 What I found is that if the form contains only one textbox, then hitting Enter worked. But the moment I included two or more textboxes, in this case, a username and password textbox, then I needed... |
Forum: PHP Jun 15th, 2009 |
| Replies: 17 Views: 1,422 Thanks for your code Tulsa, it works great. |
Forum: PHP Jun 7th, 2009 |
| Replies: 7 Views: 332 Thanks for your help. I think this is a protective measure, and now I'm starting to understand why that is... so probably best to leave the email address being processed via javascript as is. |
Forum: PHP Jun 7th, 2009 |
| Replies: 7 Views: 332 Actually, when I show the HTML source on my Joomla CMS webpage containing the "mailto" link it appears to use javascript to convert/show the contents of the email address and has an added comment at... |
Forum: PHP Jun 7th, 2009 |
| Replies: 7 Views: 332 It's a VARCHAR(60).
Yep, the browser is parsing it as an email link... when I tried your code it now shows the email address as normal text, which is great.
However, when I see my email... |
Forum: PHP Jun 7th, 2009 |
| Replies: 17 Views: 1,422 Hi
I am developing a login screen for my website, with usercode and password fields, and a Login button.
I need to know how I can make the Login button automatically submit when the user hits... |
Forum: PHP Jun 7th, 2009 |
| Replies: 7 Views: 332 I have a website using MySQL database. When I retrieve any user's email address from my user table and show (echo) it to the webpage it always appears as a link. How can I show user's email address... |