Forum: PHP May 25th, 2008 |
| Replies: 1 Views: 385 You need to make 2 changes
1. Modify your HTML page to set content type has below
<html>
<head>
<meta http-equiv="Content-type" value="text/html; charset=utf-8">
2. After mysql_connect()... |
Forum: PHP May 25th, 2008 |
| Replies: 4 Views: 506 It is possible to use mail functionality on your computer. You just need a mail server installed on your PC. You can use the free version of LiteMail (http://www.cmfperception.com/litemail.html). |
Forum: PHP May 25th, 2008 |
| Replies: 7 Views: 688 Read this post http://wordpress.org/support/topic/153814 |
Forum: PHP May 25th, 2008 |
| Replies: 1 Views: 652 Provide the actual links instead of PHP code. |
Forum: PHP May 25th, 2008 |
| Replies: 3 Views: 669 Godaddy (http://www.godaddy.com/) and directnNIC (http://www.directnic.net/) are selling domain names in very reasonable price. They are providing good services as well.
You don't need to worry... |
Forum: PHP May 25th, 2008 |
| Replies: 2 Views: 9,607 all is a reserve word. It is not a good practive to use reserve words in query. If it is required to use such words, then simply use back ticks (`) around them as I did in the below query.... |
Forum: PHP Apr 13th, 2008 |
| Replies: 3 Views: 5,246 It is always better to store the images on disk instead of database. File operations are always faster than database. Saving the images on disk will reduce your database size which will give you... |