Grazie bluedragon,
però nel connect.php ci sono solo le informazioni per andare a rilevare un determinato db. A me serve scrivere informazioni differenti a seconda dei differenti utenti.
penso che sia questa la stringa chiave:
The edit method takes the ToDo item id and the new text
of the ToDo. Updates the database.
*/
public static function edit($idt, $text){
$text = self::esc($text);
if(!$text) throw new Exception("Wrong update text!");
mysql_query(" UPDATE tz_todo
SET text='".$text."'
WHERE id=".$idt
);
if(mysql_affected_rows($GLOBALS['link'])!=1)
throw new Exception("Couldn't update item!");
}
/*
quella tabella tz_todo nel database non ha nessun dato per differenziare le informazioni a seconda dell'utente che le inserisce.
Come posso fare a creare queste informazioni?
grazie
Ciao