Ver Mensaje Individual
  #1 (permalink)  
Antiguo 14/09/2008, 17:37
gsoto78
 
Fecha de Ingreso: septiembre-2008
Mensajes: 20
Antigüedad: 15 años, 8 meses
Puntos: 0
Información necesito una orientasion

Disculpen mi ignorancia pero estoy apenas aprendiendo quisiera saber si este codigo esta vien o donde esta el error y que tipo de codigo se aria en php

-- phpMyAdmin SQL Dump

-- version 2.8.0.3

-- http://www.phpmyadmin.net

-- Host: localhost


-- Generation Time: Jan 17, 2007 at 05:24 PM


-- Server version: 4.0.26


-- PHP Version: 4.4.2


-- Database: `test'
-- --------------------------------------------------------

--

-- Table structure for table `members`

--

CREATE TABLE `members`
--

CREATE TABLE `members` (

`id` int(11) NOT NULL auto_increment,
`firstname` varchar(50) default NULL,
`lastname` varchar(50) default NULL,
`phone` varchar(50) default NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`),
KEY `firstname` (`firstname`)
) TYPE=MyISAM AUTO_INCREMENT=14 ;


--
Dumping data for table `members`
--


INSERT INTO `members` (`id`, `firstname`, `lastname`, `phone`),
VALUES (3, 'moo', 'moo', 'moo'),

(4, 'mooo', 'moooo', 'moooo'),
(5, 'jjj', 'jjj', 'jjj'),
(6, 'hh', 'h', 'hhh'),
(7, 'ggg', 'gg', 'gggg'),



(8, '', '', ''),
(9, 'uity', 'uityuit', 'iuty'),

(10, 'hhh', 'hh', 'hhh'),

(11, 'll', 'll', 'lll'),
(12, 'jimmy', 'dickinson', '123234142'),

(13, 'jjjj', 'jjjjjjjj', 'jjj');