How do you position php embedded in html?

Lance

New member
I am trying to make a forum type web site and I am having trouble positioning the table that gets echoed after an entry has been put in. Can someone help me?
I am trying to make a forum type web site and I am having trouble positioning the table that gets echoed after an entry has been put in since the php can't be put in div's. Can someone help me?
 
You just place your PHP start and end tags where you want to embed it, that's it.

To display a single value, you can use the condensed form, as in: <?=$pizza?> will output the contents of $pizza at the position it's placed.
 
Back
Top