Forum: PHP Oct 26th, 2007 |
| Replies: 4 Views: 933 When you do a view-source on the page, what is the output? |
Forum: PHP Oct 26th, 2007 |
| Replies: 4 Views: 2,233 Can you post what you've done? I have a site using UTF-8, and it took me a while to get it sorted out. Is your backend database ALSO utf-8? That made a *huge* difference for me. making sure my... |
Forum: PHP Oct 26th, 2007 |
| Replies: 1 Views: 660 use ODBC/OLEDB to talk directly to the database from PHP (if PHP is on a windows machine). You can't execute any functions in the mdb, but you could insert keys/etc into the database that could be... |
Forum: PHP Oct 26th, 2007 |
| Replies: 1 Views: 1,754 Honestly. I'd use xmlhttp (Ajax) and do it on the server. If you *need* it to be hidden from the user, then COMPLETELY hide it from the user by removing it from the page. Just have ONCHANGE call an... |
Forum: PHP Oct 26th, 2007 |
| Replies: 1 Views: 559 When you see this error, take out the content-type declaration, You're probably getting an error from PHP, but because of content-type the browser is preventing you from seeing what is wrong.
//... |
Forum: PHP Oct 26th, 2007 |
| Replies: 8 Views: 1,155 use the actual path /path/to/your/html/upload |
Forum: PHP Oct 25th, 2007 |
| Replies: 2 Views: 1,585 If this URL is correct
products.php?product=string
Then this:
$_REQUEST['products']
should be
$_REQUEST['product'] |
Forum: PHP Oct 25th, 2007 |
| Replies: 3 Views: 1,270 I know the error, but not specifically how to fix for wordpress.
The error is because XML parsers expect the <?xml> tag to be the very first thing in the file. Your file is either blank, or has a... |
Forum: PHP Oct 25th, 2007 |
| Replies: 3 Views: 1,888 If you feel that you don't want your pages to show as .php, but you still want to have dynamic content, you may want to check mod_rewrite as an an extension to Apache (which can accept urls in... |
Forum: PHP Oct 25th, 2007 |
| Replies: 3 Views: 614 Should be
if (mysql_num_rows($result) > 0) |
Forum: PHP Oct 25th, 2007 |
| Replies: 1 Views: 539 try:
mysql -pPASSWORD -u username < filename
example: mysql -u cs301 -pweb |
Forum: PHP Oct 25th, 2007 |
| Replies: 3 Views: 931 Options:
1. Install Sendmail or a similar SMTP server
or
2. Use the SMTP settings from your email account. (so PHP will connect to your outgoing mail server just like your email programs do) |
Forum: Pascal and Delphi Oct 25th, 2007 |
| Replies: 9 Views: 3,574 Worst/Quickest/Unelegant method? (assuming you don't just make a console app)
1. Drop a TTimer on the form
2. In the OnTimer event:
Timer1.enabled=false;
SendEmail(); <--... |