File "tesy_mysql.php"

Full Path: /home/analogde/www/Freebox/CHESS_ON/tesy_mysql.php
File size: 293 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

	session_start();
	include('database.php');
	DB_connexion(); 
	
	$query = "SELECT * FROM user_online WHERE connexion = 'offline' "

	$liste = mysql_query($query_liste);

	$row_liste = mysql_fetch_assoc($liste);

	$totalRows_liste = mysql_num_rows($liste); 
	
	echo $totalRows_liste;

?>