Ciao a tutti...
per rendere privata una mia pagina ho utilizzato acceslocked.
nel suo file *.sql
ho quello che segue
Codice PHP:
# phpMyAdmin SQL Dump
# version 2.5.3
# http://www.phpmyadmin.net
#
# Host: localhost
# Generato il: 04 Feb, 2005 at 03:13 PM
# Versione MySQL: 4.0.15
# Versione PHP: 4.3.3
#
# Database : `accesslocked`
#
# --------------------------------------------------------
#
# Struttura della tabella `member`
#
CREATE TABLE `member` (
`id` int(11) NOT NULL auto_increment,
`nome` tinytext NOT NULL,
`cognome` tinytext NOT NULL,
`citta` tinytext NOT NULL,
`sitoweb` text,
`email` text NOT NULL,
`username` tinytext NOT NULL,
`password` tinytext NOT NULL,
`type` tinytext NOT NULL,
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=2 ;
#
# Dump dei dati per la tabella `member`
#
INSERT INTO `member` VALUES (1, 'nome', 'cognome', 'citta', 'sito', 'mail', 'user', 'pass', 'member');
Volevo sapere come potevo fare per aggiungere una decina di altri utenti con le loro informazioni..
grazie mille