Plz buddy give me that code.
How to clear mysql real_escape from input.php
Collapse
X
-
there's so many file named input.php, be specific!Originally posted by tejassoni View PostPlz buddy give me that code.
post the codes here!!
http://wapx.amob.com
Applications, Games, Wallpapers, Ringtones, Videos, Themes, Screensaver and More!!!
-
post your input.php file here.. I dont know what is sea script I dont know any script, just be specific!! post your input.php that you have here, so that We can help you..Originally posted by tejassoni View Postmeans admin panel file. on sea script admin panel file is input.php .
that how to protect it ?
Added after 14 minutes:
ok, I will teach you how to do it, so do it your self if you dont want to post your input.php file here..
if you have a query like this
you can use mysql_escape_string like thisCode:mysql_db_query(sample_database, "INSERT INTO sample_table VALUES ('value1','value2','value3','value4','value5','value6','value7','value8','value9')") or die("Database Error");
If you use mysql_escape_string any string that the user will input will not affect your query..Code:mysql_db_query(sample_database, "INSERT INTO sample_table VALUES ('".mysql_escape_string(value1)."','".mysql_escape_string(value2)."','".mysql_escape_string(value3)."','".mysql_escape_string(value4)."','".mysql_escape_string(value5)."','".mysql_escape_string(value6)."','".mysql_escape_string(value7)."','".mysql_escape_string(value8)."','".mysql_escape_string(value9)."')") or die("Database Error");Last edited by wapxtech; 08.01.12, 00:47.
http://wapx.amob.com
Applications, Games, Wallpapers, Ringtones, Videos, Themes, Screensaver and More!!!
Comment
Comment