shana84
06-30-2003, 12:56 AM
What is the code to insert php into a table?
|
View Full Version : Php & tables shana84 06-30-2003, 12:56 AM What is the code to insert php into a table? Dude128 06-30-2003, 03:33 AM you can put PHP code anywhere in a file you want. if you want it to be inside a table, just put it between the <td> and </td> tags like you would anything else: <table> <tr> <td> <?php ...PHP code goes here... ?> </td> </tr> </table> |