Is there anyways of deleting a column out of a table using PHP??
Say i want to delete the 3rd column out of a table with 6 columns??
Is that possible?
Use an alter table query
hth
Not using MySQL ... Just a normal HTML table
Since a HTML table only looks pretty in our eyes and has no structure whatsoever for PHP, you'd have to break the whole thing up into a multidimensional array, filter out the stuff u don't want, and build it again.