Salutations,

Soit le code suivant :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
$connexion = mysqli_connect("$chemin_db","$login","$pass","$database");
(...)
$res = $connexion->query ("SHOW TABLE STATUS FROM $table");
$row = mysqli_fetch_assoc($res);
$lastmaj = $row['UPDATE_TIME'];
(...)
echo $lastmaj;
Cela marchait avant en MySQL. Depuis le passage en MySQLi, la variable $lastmaj n'affiche rien...

Any idea ?