Implementing PHP Inside a HTML Table
Implementing PHP Inside a HTML Table Currently, I am building a table full of content. I can sucessfuly make one row that has one cell (the first cell) saying data, however when I attempt to use php to echo something, it does not show up. Why is this? If you need my whole program I would be happy to include it, however to stay clean I am going to only include a section of the table. Code: <tr> <td>data </td> <td><?php echo "hi"; ?> </td> <td> </td> <td> </td> </tr> Hope as per your code nothing wrong.... can u post full code ? – user1844933 Apr 6 '14 at 6:45 Make sure your page ends with the extension .php – Shankar Damodaran Apr 6 '14 at 6:45 ...