I would like send all UPDATE informations in a table.
It's my code...
All lignes with $t... it' for Template.
$req = "UPDATE membre set nom = 'yvo' where id = '189841';";
$toto = mysql_query($req);
while($db_data= mysql_fetch_row($toto))
{
$b=1;
while($b < $a)
{
$t->set_var("enr",$db_data[$b]);
$t->parse("ligne","e",true);
$b++;
}
$t->parse("listing","l",true);
$t->set_var("ligne","");
}
$t->pparse("MyOutput","page");
PHP send my =>Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource .
Help me please...
Yvo😕