did work 🙁
Ive tryed something like
$result=mysql_query('SELECT id FROM table ORDER BY id desc LIMIT 1;')
//that select the last record
while($r=mysql_fetch_array($result))
{
$id=$r["id"];
//extract it to a array
$newid=$id+1
//add it 1
mysql_query('INSERT INTO table ($newid, etc...
what am i doig wrong ? :S ! !