Visualizzazione risultati 1 fino 1 di 1

Discussione: aiuto registrazione in php

  1. #1
    Guest

    Question aiuto registrazione in php

    allora ho creato questi file x la registrazione

    index.html
    Codice HTML:
    <html>
    <head></head>
    <body>
    <?php
    include 'config.php';
    ?>
    <form method="post" action="form.php">
    
    Username<br> 
    <input name="user" type="text" size="20" maxlength="11"><br><br>  
    Password<br> 
    <input name="pass" type="password" maxlength="8"><br><br> 
    E-mail<br> 
    <input name="email" type="text" size="50" maxlength="50"><br><br> 
    <input type="submit" name="Submit" value="Conferma"> 
    </form> 
    
    </body>
    </html>


    form.php
    Codice PHP:
    <html>
    <head></head>
    <body>
    <?php
    include 'config.php';
    session_start();
    $_SESSION['username'] = $_POST

    ['username'];
    $_SESSION['password'] = $_POST

    ['password'];
    $_SESSION['email'] = $_POST['email'];
    mysql_query("INSERT INTO `registrazione`

    (`username`, `password`, `email`,'id')VALUES

    ('
    $username' , 'password', 'email', NULL)");

    ?>
    </body>
    </html>
    e config.php
    Codice PHP:
    <?php
    $db_host
    = "localhost";
    $db_user = "pokemonon";
    $db_password = "blblblb";
    $db_name = "my_pokemonon";
    $db = mysql_connect($db_host, $db_user, $db_password) or die ('Errore durante la connessione');
    mysql_select_db($db_name, $db) or die ('Errore durante la selezione del db');
    ?>
    il database e questo

    Codice:
    -- phpMyAdmin SQL Dump
    -- version 2.11.9.5
    -- http://www.phpmyadmin.net
    --
    -- Host: localhost
    -- Generato il: 06 Ago, 2010 at 03:06 PM
    -- Versione MySQL: 5.1.30
    -- Versione PHP: 4.4.9
    
    SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
    
    --
    -- Database: `my_pokemonon`
    --
    
    -- --------------------------------------------------------
    
    --
    -- Struttura della tabella `registrazione`
    --
    
    CREATE TABLE IF NOT EXISTS `registrazione` (
      `username` varchar(13) NOT NULL default '',
      `password` varchar(9) NOT NULL default '',
      `email` varchar(30) NOT NULL default '',
      `id` int(11) NOT NULL auto_increment,
      PRIMARY KEY  (`id`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
    
    --
    -- Dump dei dati per la tabella `registrazione`
    --
    non riessco a creare il login me lo create voi intanto potete vedere se ho fatto tt bene grz e ciaoooo
    Ultima modifica di andreafallico : 06-08-2010 alle ore 18.46.34

Regole di scrittura

  • Non puoi creare nuove discussioni
  • Non puoi rispondere ai messaggi
  • Non puoi inserire allegati.
  • Non puoi modificare i tuoi messaggi
  •