July 14, 2009
The problem with the HTML is that it cannot retain the values of variables from one page to the next page. All the data values of the previous page are forgotten when the next page is reloaded. To solve this problem, PHP is used. PHP allows transferring data values from one page to the next [...]
Read the full article →
July 14, 2009
Mysql throw error when there are special characters in query !, The characters like “`” etc are always a nuisance in sql queries. For this reason , it’s always a necessity to use mysql_real_escape_string() (www.php.net/mysql_real_escape_string) ! , On one hand it’s secure and make sure that the queries don’t die while executing. The syntax that [...]
Read the full article →