View Single Post
  #6  
Old 01-07-2004, 21:58
SantX's Avatar
SantX SantX is offline
I'm watching you...
 
Join Date: 09-02-2004
Location: 127.0.0.1
Age: 40
Posts: 675
Send a message via ICQ to SantX Send a message via MSN to SantX Send a message via Skype™ to SantX
Re: Compter des lignes dans une table !

PHP Code:
require("confmysql.php"); 
$mysql_link mysql_connect($sql_serveur$sql_user$sql_password); 
$query mysql_query("SELECT COUNT(id) AS total FROM $sql_table  WHERE etat='occaz'"); 
$occaz mysql_fetch_array($query);
echo 
$occaz['total']."  voiture(s)";
mysql_free_result($query); 
mysql_close($mysql_link); 
Moi je testerai ça !
__________________
- La théorie, c'est quand on sait tout et que rien ne fonctionne.
- La pratique, c'est quand tout fonctionne et que personne ne sait pourquoi.
- Ici, nous avons réuni théorie et pratique : Rien ne fonctionne... et personne ne sait pourquoi !

- Albert Einstein -
Reply With Quote