Perfetto funziona!!!Grazie infinite!!!
![]()
posto il codice, magari torna utile a qualcuno:
-------------------------------------------------------------------------------------
<?php
include("connessione.php");
include("configurazione.php");
$utente='Becco';
mysql_select_db("$db_name");
$query_uno = mysql_query("SELECT * FROM concorrenti WHERE username = '$utente' ");
$arr= mysql_fetch_array($query_uno);
$utente=$arr['username'];
$click=$arr['click'];
$query_due = mysql_query ("SELECT COUNT(*)+1 FROM concorrenti WHERE click>$click");
$res_count = mysql_fetch_row($query_due);
$tot_records = $res_count[0];
echo $tot_records;
?>
--------------------------------------------------------------------------------------
alla prossima!!![]()