Grazie per la risposta,
<?php
include("strumenti/dbcollega.php");
** //il cognome lo prende dal form login a questo punto non ho capito dove devo inserire la funzione e come , ho cercato fare in questo modo:
**
function cleanString($string)
{
if(get_magic_quotes_gpc())
{
$string = stripslashes($string);
}
$string = mysql_real_escape_string($string);
return $string;
$pass=cleanString($_POST['cognome']);
$codice=$_POST['codicef'];
//NON FUNZIONA chiaramente sbaglio ti ricordo che i dati li ho inseriti nella tabella del db con un file cvs... se mi dai l'ok ti spedisco tutto lo script altrimenti dimmi come posso fare ripeto non son un grande esperto Grazie biagio
$link = mysql_connect("$db_host", "$db_username","$db_password") or die("Errore connessione: ". mysql_error());
mysql_select_db("$db") or die("Errore apertura database: " . mysql_error());
$strsql ="SELECT * FROM alunnimedia WHERE cognome ='$pass' AND cf='$codice' ";
$rs = @mysql_query("$strsql",$link) or die("Errore query database: " . mysql_error());
while ($riga = mysql_fetch_array($rs))
{
$str_id = $riga['idalunno'];
$str_nome = $riga['nome'];
$str_cognome =$riga['cognome'];
$str_classe = $riga['classe'];
$str_data = $riga['datansc'];
}