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!
Is there a reason you are not using a client like phpMyAdmin to do this? You could do this in 2 minutes.
create table tablename( Name varchar(25), Phone varchar(10)); You can google for syntax, there are bunch of sites with more detailed information.