Forum: PHP Feb 3rd, 2008 |
| Replies: 1 Views: 4,175 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,324 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: PHP Jan 15th, 2008 |
| Replies: 5 Views: 3,020 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). ... |