Forum: PHP Feb 3rd, 2008 |
| Replies: 1 Views: 4,220 In HTML, what you're looking for is the <select> tag. This creates a dropdown list, like...
<select>
<option value="value">Text</option>
<option value="value">Text</option>
</select>
... |
Forum: PHP Jan 26th, 2008 |
| Replies: 8 Views: 2,343 If you didn't set up the smtp settings in your php.ini file, it won't work. Check the SMTP and smtp_port settings.
If you're determined not to use the mail function or need something more... |
Forum: HTML and CSS Jan 26th, 2008 |
| Replies: 7 Views: 1,864 I think that paints the problem with far too broad a brush. Why would you have to get rid of all hover images in order to be handicap accessible?
Example. A hover image could be used to change... |
Forum: PHP Jan 15th, 2008 |
| Replies: 5 Views: 3,054 Aye, I was wondering the same thing.
addslashes() (http://us.php.net/manual/en/function.addslashes.php) is slightly different - it escapes a couple of extra characters (including '\' and NUL). ... |