Page 37 - Corso facile di PHP + MYSQL
P. 37

In basso il codice del modulo insert.html (modificato), simile al form login.html

        Questo file va salvato e caricato nello spazio hosting.



        <html>

        <head>

        <title>Esempio inserimento dati</title>

        </head>

        <body>

        <form action=“insert.php” method=“post”>

           Username: <input name=“user” type=“text”/>
               Password: <input name=“pass” type=“text”/>


                         <input type=“submit” value=“Inserisci”>
        </form>

        </body>

        </html>





        Il segreto è adesso creare il file insert.php che provvederà ad inserire i dati nella tabella
        utenti del database mysql.



        <html>

        <head>

        <title>inserisci dati</</title>

        </head>

        <body>

        <?php



        // CONNESSIONE AL DATABASE

        // Dichiarazioni variabili per la connessione al database

           $host = ‘localhost’;

           $user = ‘amokve’;

           $password = ”;

           $database = ‘my_amokve’;
   32   33   34   35   36   37   38   39   40   41   42