What do @ and (int) do in the following.
$id=(int)@$_REQUEST['id'];
What do @ and (int) do in the following.
$id=(int)@$_REQUEST['id'];
@ supressess errors, and (int) casts to the type Integer.
(int) is converting whatever the value of $_REQUEST['id'] into an integer (this is called casting).