How do i create tables on the fly in mysql with php? i cant find any function for that. Like, mysql_create_table or something..
Cheers Stefan
Simply send MySQL a query from PHP such as
CREATE TABLE my_new_table( variable INT NOT NULL, onemorevariable VARCHAR(10), PRIMARY KEY(onemorevariable)),
This should do the trick.