Hello!
I have a little problem with a For Loop, this is a For Loop in my script:
$last_id = $conn->lastInsertId();
for($a = $last_id ; $a > 0 ; $a--){
code....
}
But it doesn't work because of ($a = $last_id ;
, the variable $a can't be set to the value of $last_id, but if set this for example ($a = 5 ;
it will work.