Creating Tables

  • Thread starter Thread starter Anonymous
  • Start date Start date
A

Anonymous

Guest
Ok, I created my DB and now I was trying to create Tables through a query in my PHP script but I just got an error. Whats the proper way to create tables through PHP code?
 
There is no specific way to do that.
You simply have to create a correct query and execute that with mysql_query.

If that query fails you should look at the error and work from there to get it working.

There are no restrictions on possibilities with query's in php.

Greetz Daan
 
Or get yourself a copy of PHPMyAdmin, marvelous piece of software!
 
Back
Top