everyone here .. now i got an problem , so please help me , because I am new with php code. I want to get value from url but the result is Undefined index
this is url : http://4you4me.com/admin/index_edit_form.php?edit=76
php code :
if(isset($_REQUEST['edit']) === TRUE && ! empty($_REQUEST['edit']))
$con_id_update = mysql_real_escape_string((int)$_REQUEST['edit']);
print_r($con_id_update);
The result is undefined Variable:con_id_update
what is wrong with this script? thank for your answer.