Ciao,
grazie per le indicazioni, ma come specificato da te, nn servono.... nel senso che tt è scritto ma qll che a me interessava nn era il primo script o il database....fin lì tt ok!!!
Il problema riguarda la parte della sticky form, dove preticamente nn so dove mettere le mani!! Mi spiego meglio:
index.html
<html>
<head>
<link rel="stylesheet" type="text/css" href="stile.css" ></link>
</head>
<body>
<form method="POST" action="autenticazione.php" action="ordinazione.php" name="index">
<fieldset align="center">
<legend align="center">Accedi all'Ordine</legend>
<table align="center">
<tr><td>Login</td><td><input type="text" name="login"></input></td></tr>
<tr><td>Password</td><td><input type="password" name="password"></input></td></tr>
<tr><td colspan=2 align="center"><input type="submit" value="Entra"></input><input type="reset" value="Cancella"></input></td></tr>
</table>
</fieldset>
</form>
</body>
</html>
autenticazione.php
<?php
$login=$_POST["login"];
$password=$_POST["password"];
//Connessione al Db
mysql_connect("localhost","root","root") or die("ERRORE!! Connessione al DB: ".mysql_error());
//Selezione del Db
mysql_query("USE esame_sett") or die("ERRORE!! DB non selezionato: ".mysql_error());
//Selezione dei dati dalla tabella
$ris=mysql_query("SELECT login FROM accessi WHERE login='$login'") or die("ERRORE!! Selezione dati dalla tabella: ".mysql_error());
//Numero di righe nella tabella
$num_righe=mysql_num_rows($ris);
//Verifica se la login è già presente nel Db
if($num_righe>0){
header('Location: http://localhost\TSW\Esami\Esami_08\...rdinazione.php');
}else
header('Location: http://localhost\TSW\Esami\Esami_08\08_09_18\errore.php');
?>
DA QUI INIZIA IL PROBLEMA: PER L'ERRORE TT FACILE, MA PER ORDINAZIONE?????
COME FACCIO A CREARE LA STICKY FORM?
SCUSATE L'IGNORANZA, MA SE POTETE ESSERMI DI AIUTO VERAMENTE VE NE SAREI GRATI!!!