• Home
  • Forum
  • Fare Web
  • PHP

Classifica

  • Creatore Discussione Creatore Discussione Bizio2009
  • Data di inizio Data di inizio 14 Feb 2010
Prec.
  • 1
  • 2
  • 3
  • 4
Succ.
Primo Prec. 3 di 4 Succ. Ultimo
B

Bizio2009

Utente Attivo
12 Giu 2009
310
0
0
  • 18 Feb 2010
  • #41
Codice:
1. nella pagina php.php

//............
$tot = ($risultato == 1) ? "$risultato punto" : "$risultato punti"; 
echo "Hai totalizzato $tot"; 
//.............

ti risulta a monitor (es)

Hai totalizzato 4 punti

oppure

Hai totalizzato 1 punto
Sì, funziona così e perfettamente...
 
B

Bizio2009

Utente Attivo
12 Giu 2009
310
0
0
  • 18 Feb 2010
  • #42
Pagina php.php

PHP:
<?php
if(!isset($_SESSION)){session_start();}  

require('config.php');

if(!isset($_SESSION['login']))
{
header('Location: index.php');
exit;
}
    $default = mysql_fetch_array(mysql_query("SELECT cognome_utente, nome_utente FROM utenti WHERE id = '{$_SESSION['login']}' LIMIT 1"));


?>


<?php

$db_host = '';
$db_utente = '';
$db_password = '';
$db_nomedb = '';

$dbh=mysql_connect ($db_host, $db_utente, $db_password) or die ('Errore nella stringa di connessione al database: '.mysql_error());
mysql_select_db($db_nomedb);
?>

<?php
$risposta_corretta_domanda1=3;
$risposta_corretta_domanda2=1;
$risposta_corretta_domanda3=4;
$risposta_corretta_domanda4=1;

$frase1=isset($_POST['R1'])?$_POST['R1']:"";
$frase2=isset($_POST['R2'])?$_POST['R2']:"";
$frase3=isset($_POST['R3'])?$_POST['R3']:""; 
$frase4=isset($_POST['R4'])?$_POST['R4']:""; 
$punteggio = 0;      // variabile del risultato

if($frase1 == $risposta_corretta_domanda1) { 
$punteggio++; 
echo "<b>Risposta alla domanda 1</b> : <b><u><i><font color= green>ESATTA!</font></b></u></i><br><br>"; 
} else {
if ($frase1 == "") echo "<b>Domanda 1</b> : <b><u><i>NON HAI RISPOSTO</b></u></i><br><br>";
else echo "<b>Risposta alla domanda 1</b> : <b><u><i><font color= red>ERRATA!</font></b></u></i> <br><br><font color= red>RIPROVA</font><br><br>";
} 

 
if($frase2 ==//uguale a prima
} 
 
if($frase3 == $risposta_corretta_domanda3) { 
$punteggio++; 
br>";//uguale a prima
} 

if($frase4 == $risposta_corretta_domanda4) { 
$punteggio++; 
echo "<b>Risposta alla domanda 4";//uguale a prima
} 

$tot = ($punteggio == 1) ? "$punteggio punto" : "$punteggio punti"; 
$punteggio=$_SESSION['punteggio']; 
echo "Hai totalizzato $tot"; 

?>

Classifica.php
PHP:
<?php
if(!isset($_SESSION)){session_start ();}

require('config.php');

if(!isset($_SESSION['login']))
{
header('Location: index.php');
exit;
}
    $default = mysql_fetch_array(mysql_query("SELECT cognome_utente, nome_utente FROM utenti WHERE id = '{$_SESSION['login']}' LIMIT 1"));


?>

<?php 

$db_host = '';
$db_utente = '';
$db_password = '';
$db_nomedb = '';

$dbh=mysql_connect ($db_host, $db_utente, $db_password) or die ('Errore nella stringa di connessione al database: '.mysql_error());
mysql_select_db($db_nomedb);
?>

<?php 

$query=mysql_query("SELECT cognome_utente, nome_utente FROM utenti ORDER BY tot");

$utenti=mysql_num_rows($query);

echo "<table>";  
//non devi usare l'array globale $_post 
while($utenti=mysql_fetch_array($query)){  

  
$cognome_utente=$utenti['cognome_utente'];  
$nome_utente=$utenti['nome_utente'];  
$tot=$utenti['tot'];
$tot = ($punteggio == 1) ? "$punteggio punto" : "$punteggio punti";
$punteggio=$_SESSION['punteggio'];  


echo "<tr> 
    
    <td>$cognome_utente</td> 
    <td>$nome_utente</td> 
     <td>Hai totalizzato $tot</td>
    
    </tr>";  
} //fine del while 
echo "</table><br><br>";   
?>
 
B

Bizio2009

Utente Attivo
12 Giu 2009
310
0
0
  • 18 Feb 2010
  • #43
Pagina domanda.php
PHP:
<?php
if(!isset($_SESSION)){session_start ();} 

require('config.php');

if(!isset($_SESSION['login']))
{
header('Location: index.php');
exit;
}
    $default = mysql_fetch_array(mysql_query("SELECT cognome_utente, nome_utente FROM utenti WHERE id = '{$_SESSION['login']}' LIMIT 1"));
?>

<form action="php.php" method="post">
<p><b>1) :</b></p>
<input type="radio" name="R1" value="1"></input><br>
<input type="radio" name="R1" value="2"></input><br>
<input type="radio" name="R1" value="3"></input><br>
<input type="radio" name="R1" value="4"></input><br>
<input type="radio" name="R1" value="5"></input><br><br>
 
<p><b>2) :</b></p>
<input type="radio" name="R2" value="1"></input><br>
<input type="radio" name="R2" value="2"></input><br>
<input type="radio" name="R2" value="3"></input><br>
<input type="radio" name="R2" value="4"></input><br>
<input type="radio" name="R2" value="5"></input><br><br>
 
<p><b>3) :</b></p>
<input type="radio" name="R3" value="1"></input><br>
<input type="radio" name="R3" value="2"></input><br>
<input type="radio" name="R3" value="3"></input><br>
<input type="radio" name="R3" value="4"></input><br>
<input type="radio" name="R3" value="5"></input><br><br>

<p><b>4) :</b></p>
<input type="radio" name="R4" value="1"></input><br>
<input type="radio" name="R4" value="2"></input><br>
<input type="radio" name="R4" value="2"></input><br>
<input type="radio" name="R4" value="4"></input><br>
<input type="radio" name="R4" value="5"></input><br><br>

<input type="submit" value="Rispondi" />
</form>
 

borgo italia

Super Moderatore
Membro dello Staff
SUPER MOD
MOD
4 Feb 2008
16.044
150
63
PR
www.borgo-italia.it
  • 18 Feb 2010
  • #44
Sì, funziona così e perfettamente...
Clicca per allargare...
allora sembrerebbe che tu trasmetta il valore
quindi (a parte che devi mettere prima la lettura della sessione) dovrebbe funziarti anche in classifica.php


PHP:
//............
$tot=$utenti['tot'];
$punteggio=$_SESSION['punteggio'];
$tot = ($punteggio == 1) ? "$punteggio punto" : "$punteggio punti"; 
echo "<tr>
    <td>$cognome_utente</td>  
    <td>$nome_utente</td>  
     <td>Hai totalizzato $tot</td> 
    </tr>";   
} //fine del while  
echo "</table><br><br>";    
?>
 

borgo italia

Super Moderatore
Membro dello Staff
SUPER MOD
MOD
4 Feb 2008
16.044
150
63
PR
www.borgo-italia.it
  • 18 Feb 2010
  • #45
volevo sapere, stai postando le pagine tagliuzzate o intere?
perche ad esempio nella pagina domnda.php, nella parte di php scrivi

<?php
if(!isset($_SESSION)){session_start ();}

require('config.php');

if(!isset($_SESSION['login']))
{
header('Location: index.php');
exit;
}
$default = mysql_fetch_array(mysql_query("SELECT cognome_utente, nome_utente FROM utenti WHERE id = '{$_SESSION['login']}' LIMIT 1"));
?>

cosa c'è o a che ti serve quel $default=mysql eccetera?
analogo discorso per le altre (anche in php.php c'è quella select)
 
B

Bizio2009

Utente Attivo
12 Giu 2009
310
0
0
  • 18 Feb 2010
  • #46
Stesso risultato aimè

PHP:
<?php
if(!isset($_SESSION)){session_start ();}

require('config.php');

if(!isset($_SESSION['login']))
{
header('Location: index.php');
exit;
}
    $default = mysql_fetch_array(mysql_query("SELECT cognome_utente, nome_utente FROM utenti WHERE id = '{$_SESSION['login']}' LIMIT 1"));


?>

<?php 

$db_host = '';
$db_utente = '';
$db_password = '';
$db_nomedb = '';

$dbh=mysql_connect ($db_host, $db_utente, $db_password) or die ('Errore nella stringa di connessione al database: '.mysql_error());
mysql_select_db($db_nomedb);
?>

<?php 

$query=mysql_query("SELECT cognome_utente, nome_utente FROM utenti ORDER BY tot");

$utenti=mysql_num_rows($query);

echo "<table>";  
//non devi usare l'array globale $_post 
while($utenti=mysql_fetch_array($query)){  

  
$cognome_utente=$utenti['cognome_utente'];  
$nome_utente=$utenti['nome_utente'];  
$tot=$utenti['tot'];
$punteggio=$_SESSION['punteggio'];  
$tot = ($punteggio == 1) ? "$punteggio punto" : "$punteggio punti";

echo "<tr> 
    
    <td>$cognome_utente</td> 
    <td>$nome_utente</td> 
     <td>Hai totalizzato $tot</td>
    
    </tr>";  
} //fine del while 
echo "</table><br><br>";   
?>

Mi domando...perchè se $tot viene stampato in una pagina non viene stampata nell'altra? Mistero???
 
B

Bizio2009

Utente Attivo
12 Giu 2009
310
0
0
  • 18 Feb 2010
  • #47
No Borgo, quella parte non è tagliata...ma è quella che compromette il tutto?
 
Ultima modifica: 18 Feb 2010

borgo italia

Super Moderatore
Membro dello Staff
SUPER MOD
MOD
4 Feb 2008
16.044
150
63
PR
www.borgo-italia.it
  • 18 Feb 2010
  • #48
prova a scrivere l'if in maniera estesa

PHP:
//..........
if($punteggio == 1){
	$tot="$punteggio punto";
}else{
	$tot="$punteggio punti";
}
//e poi la tabella...........

ed eventualmente metti dei var_dump per verificare i valori
poi per oggi basta, ci sentiamo domattina
 
B

Bizio2009

Utente Attivo
12 Giu 2009
310
0
0
  • 19 Feb 2010
  • #49
Buongiorno Borgo

Intendi dire "elseif"?
 

borgo italia

Super Moderatore
Membro dello Staff
SUPER MOD
MOD
4 Feb 2008
16.044
150
63
PR
www.borgo-italia.it
  • 19 Feb 2010
  • #50
buongiorno anche a te

Intendi dire "elseif"?
Clicca per allargare...
no solo else

se uguale a uno $tot="$punteggio punto";//==1
altrimenti $tot="$punteggio punti";//== 0 o 2 o 3 o 4...
 
B

Bizio2009

Utente Attivo
12 Giu 2009
310
0
0
  • 19 Feb 2010
  • #51
Ma l'else non c'è già? c'è if e else (altrimenti)...
 
B

Bizio2009

Utente Attivo
12 Giu 2009
310
0
0
  • 19 Feb 2010
  • #52
Ho un attimino di confusione riguardo una cosa ieri notte:

nel db ho una tabella "utenti" con cognome_utente, nome_utente, pass, mail (avevo anche punteggio e tot) solo che mi andava in palla quando quanche volta mi loggavo.

Ne devo creare un'altra? "classifica" con campi tot e punteggio senza cognome_utente e nome_utente perchè questi ultimi due sono nell'altra tabella?
 
B

Bizio2009

Utente Attivo
12 Giu 2009
310
0
0
  • 19 Feb 2010
  • #53
Ora mi dà due avvertimenti in classifica.php che ieri non mi dava :incazz:

PHP:
<?php
if(!isset($_SESSION)){session_start ();}

require('config.php');

if(!isset($_SESSION['login']))
{
header('Location: index.php');
exit;
}
    $default = mysql_fetch_array(mysql_query("SELECT cognome_utente, nome_utente FROM utenti WHERE id = '{$_SESSION['login']}' LIMIT 1"));


?>

<?php 

$db_host = '';
$db_utente = '';
$db_password = '';
$db_nomedb = '';

$dbh=mysql_connect ($db_host, $db_utente, $db_password) or die ('Errore nella stringa di connessione al database: '.mysql_error());
mysql_select_db($db_nomedb);
?>

<?php 

$query=mysql_query("SELECT cognome_utente, nome_utente FROM utenti ORDER BY tot");

$utenti=mysql_num_rows($query);

echo "<table>";  
//non devi usare l'array globale $_post 
while($utenti=mysql_fetch_array($query)){  

  
$cognome_utente=$utenti['cognome_utente'];  
$nome_utente=$utenti['nome_utente'];  
$tot=$utenti['tot'];
$punteggio=$_SESSION['punteggio'];  
$tot = ($punteggio == 1) ? "$punteggio punto" : "$punteggio punti";


echo "<tr> 
    
    <td>$cognome_utente</td> 
    <td>$nome_utente</td> 
     <td>Hai totalizzato $tot</td>
    
    </tr>";  
} //fine del while 
echo "</table><br><br>";   
?>

Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in C:\HostingSpaces\wwwroot\classifica.php on line 31

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\wwwroot\classifica.php on line 35

Sarebbero queste:
$utenti=mysql_num_rows($query);
while($utenti=mysql_fetch_array($query)){
 

borgo italia

Super Moderatore
Membro dello Staff
SUPER MOD
MOD
4 Feb 2008
16.044
150
63
PR
www.borgo-italia.it
  • 19 Feb 2010
  • #54
ciao, da quello che ho capito hai tolto dalla tabella utenti il campo tot, se è così e nella query hai lasciato ORDER BY tot per quello ti da errore
 
B

Bizio2009

Utente Attivo
12 Giu 2009
310
0
0
  • 19 Feb 2010
  • #55
Ne devo creare un'altra? "classifica" con campi tot e punteggio senza cognome_utente e nome_utente perchè questi ultimi due sono nell'altra tabella?
 

alessandro1997

Utente Attivo
6 Ott 2009
5.302
1
0
27
Roma
alessandro1997.netsons.org
  • 19 Feb 2010
  • #56
Direi che questa discussione sta diventando abbastanza confusionaria. Allora, ripeti da capo che cosa devi fare, posta TUTTI i file che hai già scritto e segnala gli errori riscontrati, inoltre posta anche la struttura del database e un record di esempio per ogni tabella, altrimenti così non si va da nessuna parte...
 

borgo italia

Super Moderatore
Membro dello Staff
SUPER MOD
MOD
4 Feb 2008
16.044
150
63
PR
www.borgo-italia.it
  • 19 Feb 2010
  • #57
....abbastanza confusionaria. Allora, ripeti da capo che cosa devi fare, posta TUTTI i file...
Clicca per allargare...
parole sante e con script puliti ed ordinati
 
B

Bizio2009

Utente Attivo
12 Giu 2009
310
0
0
  • 19 Feb 2010
  • #58
Ciao! Grazie Borgo, grazie Ale!

Ho due tabelle nel db:
UTENTI con id, cognome_utente, nome_utente, pass e mail (funziona)
CLASSIFICA con id, cognome_utente, nome_utente, tot e punteggio.

Questa è la pagina domanda.php

PHP:
<?php
if(!isset($_SESSION)){session_start ();} 

require('config.php');

if(!isset($_SESSION['login']))
{
header('Location: index.php');
exit;
}
    $default = mysql_fetch_array(mysql_query("SELECT cognome_utente, nome_utente FROM utenti WHERE id = '{$_SESSION['login']}' LIMIT 1"));
?>

<form action="php.php" method="post">
<p><b></b></p>
<input type="radio" name="R1" value="1"></input><br>
<input type="radio" name="R1" value="2"></input><br>
<input type="radio" name="R1" value="3"></input><br>
<input type="radio" name="R1" value="4"></input><br>
<input type="radio" name="R1" value="5"></input><br><br>
 
<p><b></b></p>
<input type="radio" name="R2" value="1"></input><br>
<input type="radio" name="R2" value="2"></input><br>
<input type="radio" name="R2" value="3"></input><br>
<input type="radio" name="R2" value="4"></input><br>
<input type="radio" name="R2" value="5"></input><br><br>
 
<p><b></b></p>
<input type="radio" name="R3" value="1"></input><br>
<input type="radio" name="R3" value="2"></input><br>
<input type="radio" name="R3" value="3"></input><br>
<input type="radio" name="R3" value="4"></input><br>
<input type="radio" name="R3" value="5"></input><br><br>

<p><b></b></p>
<input type="radio" name="R4" value="1"></input><br>
<input type="radio" name="R4" value="2"></input><br>
<input type="radio" name="R4" value="2"></input><br>
<input type="radio" name="R4" value="4"></input><br>
<input type="radio" name="R4" value="5"></input><br><br>

<input type="submit" value="Rispondi" />
</form>

Questa è la pagina php.php (funziona col form ma non trasmette i dati nella pagina classifica.php

PHP:
<?php
if(!isset($_SESSION)){session_start();}  

require('config.php');

if(!isset($_SESSION['login']))
{
header('Location: index.php');
exit;
}
    $default = mysql_fetch_array(mysql_query("SELECT cognome_utente, nome_utente FROM utenti WHERE id = '{$_SESSION['login']}' LIMIT 1"));
?>

<?php

$db_host = '';
$db_utente = '';
$db_password = '';
$db_nomedb = '';

$dbh=mysql_connect ($db_host, $db_utente, $db_password) or die ('Errore nella stringa di connessione al database: '.mysql_error());
mysql_select_db($db_nomedb);
?>

<?php
$risposta_corretta_domanda1=3;
$risposta_corretta_domanda2=1;
$risposta_corretta_domanda3=4;
$risposta_corretta_domanda4=1;

$frase1=isset($_POST['R1'])?$_POST['R1']:"";
$frase2=isset($_POST['R2'])?$_POST['R2']:"";
$frase3=isset($_POST['R3'])?$_POST['R3']:""; 
$frase4=isset($_POST['R4'])?$_POST['R4']:""; 
$punteggio = 0;      // variabile del risultato

if($frase1 == $risposta_corretta_domanda1) { 
$punteggio++; 
echo "<b>Risposta alla domanda 1</b> : <b><u><i><font color= green>ESATTA!</font></b></u></i><br><br>"; 
} else {
if ($frase1 == "") echo "<b>Domanda 1</b>: <b><u><i>NON HAI RISPOSTO</b></u></i><br><br>";
else echo "<b>Risposta alla domanda 1</b>: <b><u><i><font color= red>ERRATA!</font></b></u></i> <br><br><font color= red>RIPROVA</font><br><br>";
} 

 
if($frase2 == $risposta_corretta_domanda2) { 
$punteggio++; 
echo "<b>Risposta alla domanda 2</b>: <b><u><i><font color= green>ESATTA!</font></b></u></i><br><br>";
} else {
if ($frase2 == "") echo "<b>Domanda 2</b>: <b><u><i>NON HAI RISPOSTO</b></u></i><br><br>";
else echo "<b>Risposta alla domanda 2</b>: <b><u><i><font color= red>ERRATA!</font></b></u></i> <br><br><font color= red>RIPROVA</font><br><br>";
} 
 
if($frase3 == $risposta_corretta_domanda3) { 
$punteggio++; 
echo "<b>Risposta alla domanda 3</b>: <b><u><i><font color= green>ESATTA!</font></b></u></i><br><br>";
} else {
if ($frase3 == "") echo "<b>Domanda 3</b>: <b><u><i>NON HAI RISPOSTO</b></u></i><br><br>";
else echo "<b>Risposta alla domanda 3</b>: <b><u><i><font color= red>ERRATA!</font></b></u></i> <br><br><font color= red>RIPROVA</font><br><br>";
} 

if($frase4 == $risposta_corretta_domanda4) { 
$punteggio++; 
echo "<b>Risposta alla domanda 4</b>: <b><u><i><font color= green>ESATTA!</font></b></u></i><br><br>";
} else {
if ($frase4 == "") echo "<b>Domanda 4</b>: <b><u><i>NON HAI RISPOSTO</b></u></i><br><br>";
else echo "<b>Risposta alla domanda 4</b>: <b><u><i><font color= red>ERRATA!</font></b></u></i> <br><br><font color= red>RIPROVA</font><br><br>";
} 

$tot = ($punteggio == 1) ? "$punteggio punto" : "$punteggio punti"; 
$punteggio=$_SESSION['punteggio']; 
echo "Hai totalizzato $tot"; 

?>

Questa è la pagina classifica.php

PHP:
<?php
if(!isset($_SESSION)){session_start ();}

require('config.php');

if(!isset($_SESSION['login']))
{
header('Location: index.php');
exit;
}
    $default = mysql_fetch_array(mysql_query("SELECT cognome_utente, nome_utente FROM utenti WHERE id = '{$_SESSION['login']}' LIMIT 1"));


?>

<?php 

$db_host = '';
$db_utente = '';
$db_password = '';
$db_nomedb = '';

$dbh=mysql_connect ($db_host, $db_utente, $db_password) or die ('Errore nella stringa di connessione al database: '.mysql_error());
mysql_select_db($db_nomedb);
?>

<?php 

$query=mysql_query("SELECT cognome_utente, nome_utente FROM classifica ORDER BY tot");

$classifica=mysql_num_rows($query);

echo "<table>";  
//non devi usare l'array globale $_post 
while($classifica=mysql_fetch_array($query)){  

  
$cognome_utente=$classifica['cognome_utente'];  
$nome_utente=$classifica['nome_utente'];  
$tot=$classifica['tot'];
$punteggio=$_SESSION['punteggio'];  
$tot = ($punteggio == 1) ? "$punteggio punto" : "$punteggio punti";


echo "<tr> 
    
    <td>$cognome_utente</td> 
    <td>$nome_utente</td> 
     <td>Hai totalizzato $tot</td>
    
    </tr>";  
} //fine del while 
echo "</table><br><br>";   
?>

Grazie infinite di nuovo a tutti e due!
 
Ultima modifica: 21 Feb 2010

satifal

Utente Attivo
25 Set 2008
522
13
0
Roma
  • 19 Feb 2010
  • #59
Perchè ripetere due volte le colonne cognome_utente e nome_utente quando basterebbe una foreign key verso la tabella UTENTI?
 
B

Bizio2009

Utente Attivo
12 Giu 2009
310
0
0
  • 19 Feb 2010
  • #60
Ciao satifal! Stà in quello l'errore?
 
Prec.
  • 1
  • 2
  • 3
  • 4
Succ.
Primo Prec. 3 di 4 Succ. Ultimo
Devi accedere o registrarti per poter rispondere.

Discussioni simili

Algoritmo classifica SQL
  • Tommy03
  • 8 Mag 2020
  • MySQL
Risposte
0
Visite
1K
MySQL 8 Mag 2020
Tommy03
M
[PHP] Elenco con "classifica" delle informazioni nel db
  • mcroy
  • 1 Ott 2019
  • PHP
Risposte
3
Visite
1K
PHP 1 Ott 2019
marino51
Classifica PHP MySQL
  • cristoforo58
  • 8 Lug 2017
  • PHP
Risposte
2
Visite
2K
PHP 9 Lug 2017
PeterRey
Classifica Facebook
  • primis
  • 1 Mar 2017
  • Offerte e Richieste di Lavoro e/o Collaborazione
Risposte
0
Visite
877
Offerte e Richieste di Lavoro e/o Collaborazione 1 Mar 2017
primis
R
Creare una classifica con Access 2007
  • Rocky
  • 22 Set 2015
  • Database
Risposte
1
Visite
3K
Database 31 Ott 2015
Rocky
R
M
Aggiornare valori in mysql (classifica)
  • mateky
  • 2 Dic 2014
  • PHP
Risposte
8
Visite
2K
PHP 6 Dic 2014
otto9due
E
Classifica
  • edoo
  • 9 Giu 2014
  • MySQL
Risposte
7
Visite
2K
MySQL 11 Giu 2014
marino51
Classifica 2012 dei migliori antivirus in commercio
  • Web Designer
  • 4 Apr 2012
  • Sicurezza e Virus
Risposte
9
Visite
7K
Sicurezza e Virus 4 Apr 2012
borgo italia
P
Script per classifica Tipster
  • pavel70
  • 8 Lug 2010
  • CMS (Content Management System)
Risposte
2
Visite
3K
CMS (Content Management System) 14 Lug 2010
gianni21031
G
Script per Classifica
  • Giovy_1006
  • 9 Giu 2010
  • PHP
Risposte
2
Visite
8K
PHP 9 Giu 2010
alessandro1997
Estrarre valori unici per classifica
  • cosov
  • 5 Dic 2009
  • Classic ASP
Risposte
4
Visite
3K
Classic ASP 8 Dic 2009
@web
@
M
php script per classifica
  • megawatt
  • 8 Set 2009
  • PHP
Risposte
2
Visite
4K
PHP 8 Set 2009
Eliox
O
classifica parimerito
  • ottoboni
  • 6 Feb 2009
  • Classic ASP
Risposte
1
Visite
2K
Classic ASP 8 Mar 2009
daviduccio
N
Problema Classifica gioco
  • nuty11
  • 6 Gen 2007
  • Flash
Risposte
1
Visite
1K
Flash 9 Gen 2007
nuty11
N
D
Chi mi può aiutare nel fare 1 classifica?
  • Davdx
  • 1 Giu 2006
  • PHP
Risposte
1
Visite
1K
PHP 11 Giu 2006
SilverSeraph
S
S
Classifica Gioco
  • Sc17
  • 26 Set 2005
  • Flash
Risposte
2
Visite
1K
Flash 13 Ott 2005
Sc17
S
A
Assegnare rango ad una classifica in MS Access
  • archi69
  • 19 Set 2005
  • MS Access
Risposte
1
Visite
6K
MS Access 7 Ott 2005
c1969
C
A
Da prompt java a classifica
  • AzzEver
  • 29 Gen 2005
  • Javascript
Risposte
1
Visite
2K
Javascript 1 Feb 2005
daviduccio
M
Promuovi il tuo sito nella nuova classifica della SABA Top100
  • Miticociccio
  • 5 Ott 2004
  • SEO e Posizionamento
Risposte
0
Visite
1K
SEO e Posizionamento 5 Ott 2004
Miticociccio
M
N
Creazione classifica per gioco
  • Neds
  • 31 Ago 2004
  • HTML e CSS
Risposte
1
Visite
1K
HTML e CSS 31 Ago 2004
daviduccio
Condividi:
Facebook X (Twitter) LinkedIn WhatsApp e-mail Condividi Link
  • Home
  • Forum
  • Fare Web
  • PHP
  • Italiano
  • Termini e condizioni d'uso del sito
  • Policy Privacy
  • Aiuto
  • Home
Community platform by XenForo® © 2010-2024 XenForo Ltd. | Traduzione a cura di XenForo Italia
Menu
Accedi

Registrati

  • Home
  • Forum
    • Nuovi Messaggi
    • Cerca...
  • Novità
    • Featured content
    • Nuovi Messaggi
    • Ultime Attività
X

Privacy & Transparency

We use cookies and similar technologies for the following purposes:

  • Personalized ads and content
  • Content measurement and audience insights

Do you accept cookies and these technologies?

X

Privacy & Transparency

We use cookies and similar technologies for the following purposes:

  • Personalized ads and content
  • Content measurement and audience insights

Do you accept cookies and these technologies?