lets say I had the following code:
$fetchlast1 = mysql_query("SELECT * FROM tableOne WHERE name='billy'");
while ($row = mysql_fetch_array($fetchlast1)) {
$id = $row[1];
if($id == '23'){
//give admin privileges.
}
}
So lets say the value of $id turns out to be '45' NOT '23'. Can a skilled person or anyone at all somehow change the recieved value to be '23' and hence get admin privileges?