1. how to work php sql injection and use in site ?
我的网站登录过程很容易登录任何没有用户名和密码的人。请描述如何安全登录过程。
例子 :
$logindetail = "select * from tablename where username = '".$_REQUEST['username']."' and password = '".$_REQUEST['password']."' ";
$sqlrun = mysql_query($logindetail);
$recordcount = mysql_num_rows($sqlrun);
在这个登录过程中如何使用 sql 注入?