VIDEO CONNECT.PHP <?php $host="127.0.0.1"; //localhost $user="root"; $pass="vadposinru594"; $dbname="my_thomasfugazza"; $db=mysqli_connect($host, $user, $pass, $dbname); ?> FORMINSERT.PHP <html> <head> <link rel="stylesheet" href="style.css" type="text/css" /> </head> <table border="1" width='100%' height='10%'> <tbody><tr bgcolor='yellow'> <td widht='15%' align='center'><a href="/public_html/index.html" src="computer.jpg"width='100'height='100'></a></td> target="_blank"><img <td width='70%' align='center'><h1>Inserisci film</h1></td> <td width='15%' align='center'><h5><a href='../index.html'>Indietro</a></h5></td> </tr> </table> <table width="60%" border="0" bgcolor="grey" align="center"> <form action="form_insert.php" method="POST"> <tr> href='../index.html'>Home</a>/<a <td>Codice</td> <td></td> </tr> <tr> <td><input name="CODICE" size="5" maxlength="5"></td> </tr> <tr> <td>Titolo film</td> <td>Autore;</td> </tr> <tr> <td><input name="TITOLO" size="50" maxlength="100"></td> <td><input name="AUTORE" size="50" maxlength="50"></td> </tr> <tr> <tr> <td align="right"><input type="submit" value="Invia" name="inviat"></td> <td align="left"><input type="reset" value="Cancella"></td> </tr> </form> </table> <?php if(isset($_POST['inviat'])) { //inizializzazione variabili $codice=$_POST['CODICE']; $titolo=$_POST['TITOLO']; $autore=$_POST['AUTORE']; //connessione a database my_sql //$db=mysqli_connect("127.0.0.1", "root", "", "my_thomasfugazza"); include("connect.php"); //creazione comando sql per inserimento record $sql = "insert into criminali "; $sql.= "(CODICE, TITOLO, AUTORE) "; $sql.= "values "; $sql.= "('$codice', '$titolo', '$autore')"; //esecuzione comando sql $ris=mysqli_query($db, $sql); //verifica che il record sia stato inserito correttamente if($ris>0) echo"Record inserito con successo"; else echo"Nessun risultato"; //chiusura database mysql mysqli_close($db); } ?> <input type="button" value="Torna alla lista" onClick="document.location.href='lettura.php'"> <table border="1" width='100%' height='10%'> <tbody><tr bgcolor='#03FG4C'> <td widht='100%' align='center'>&copy;Thomas [email protected]</td> </tr> </table> </body> </html> LETTURA.PHP <html> Fugazza - I.T.E 'Agostino Bassi' - <head> <link rel="stylesheet" href="style.css" type="text/css" /> </head> <table border="1" width='100%' height='10%'> <tbody><tr bgcolor='yellow'> <td widht='15%' align='center'><a href="/public_html/index.html" src="computer.jpg"width='100'height='100'></a></td> target="_blank"><img <td width='70%' align='center'><h1>FILM</h1></td> <td width='15%' align='center'><h5><a href='../index.html'>Indietro</a></h5></td> </tr> </table> <table height="60%" width="100%" border="2" bgcolor="grey"> <h2><a href="form_insert.php">Inserisci un nuovo film</a></h2> </table> <?php //connessione a database my_sql //$db=mysqli_connect("127.0.0.1", "root", "", "my_thomasfugazza"); include("connect.php"); //creazione comando sql per estrazione dati $pippo="select * from video order by CODICE asc"; //esecuzione comando sql $ris=mysqli_query($db, $pippo); //numero record estratti $numcri=mysqli_num_rows($ris); //apertura form echo"<form action='lettura.php' method='POST'>"; //intestazione tabella echo"<table border=1 align=center> <tr> <td>Selezione</td> href='../index.html'>Home</a>/<a <td>Codice</td> <td>Titolo Film</td> <td>Autore</td> </tr>"; //visualizzazione record estratti con ciclo precondizionale while($criest=mysqli_fetch_assoc($ris)) { $codice=$criest['CODICE']; $titolo=$criest['TITOLO']; $autore=$criest['AUTORE']; //visualizzazione variabili estratte echo"<tr> <td><input type='radio' name='selezi' value='$codice'></td> <td>$codice</td> <td>$titolo</td> <td>$autore</td>"; echo"</tr>"; } echo"</table>"; echo"<center><input name='cancel'></center></form>"; type='submit' //verifica che l'utente abbia digitato cancella riga if(isset($_POST['cancel'])){ //inizializzazione variabili $selezi=$_POST['selezi']; //creazione comando sql $sql="delete from video where "; $sql.="CODICE='$selezi'"; //esecuzione comando value='Cancella riga' $ris=mysqli_query($db, $sql); if($ris>0) echo"Record cancellato con successo"; else"Record non cancellato"; } //chiusura mysql mysqli_close($db); ?> <table> </table> <table border="1" width='100%' height='10%'> <tbody><tr bgcolor='#03FG4C'> <td widht='100%' align='center'>&copy;Thomas [email protected]</td> </tr> </table> </body> </html> Fugazza - I.T.E 'Agostino Bassi' -