Wednesday, 4 January 2017

php new hosting with double quote error

I have just change my hosting, before all my PHP scripts worked fine



but now i get many mysql error like this:



You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near column = \'value\' 



it seems that there is a double quote in some script



there is a way to resolve without update all my PHP scripts?



EDIT: example of PHP code



function test( $table,$column, $where ){

if( get_magic_quotes_gpc() ) { $where = strip_tags( trim( $where ) ); }

else{ $where = strip_tags( mysql_real_escape_string( trim( $where ) ) ); }

$where = "AND id = '" . $where . "' ";

$query = "SELECT " . $column . " FROM " . $table . " WHERE 1 " . $where . " LIMIT 1";
//...

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...