1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

PHP form / MySQL: How to create the table?

Discussion in 'PHP' started by Pay, Feb 9, 2015.

  1. #1
    I am trying to create a table for my community page, but I'm not having much success.

    What I'm trying to accomplish is to get a table where it would have two fields to store the info below:

    Name: Phone Number:

    I was able to create the php form, but not the table... would really appreciate it if you guys could give me the MySQL syntax to accomplish it.

    Thanks!
     
    Pay, Feb 9, 2015 IP
  2. billzo

    billzo Well-Known Member

    Messages:
    961
    Likes Received:
    278
    Best Answers:
    15
    Trophy Points:
    113
    #2
    Is there a reason you are not using a client like phpMyAdmin to do this? You could do this in 2 minutes.
     
    billzo, Feb 10, 2015 IP
  3. WebDeveloperSahil

    WebDeveloperSahil Active Member

    Messages:
    331
    Likes Received:
    19
    Best Answers:
    0
    Trophy Points:
    80
    #3
    create table tablename(
    Name varchar(25),
    Phone varchar(10));

    You can google for syntax, there are bunch of sites with more detailed information.
     
    WebDeveloperSahil, Feb 10, 2015 IP