how do i increse a verible (a number) by one
$row->number +1
would that do it?
if so if i eanted to subtract from it would i just need to change the stmbol around + to -
You want it as
$variable = $variable + 1;
ok thx