How can I echo HTML in PHP?
There are a few ways to echo HTML in PHP. 1. In between PHP tags <?php if(condition){ ?> <!– HTML here –> <?php } ?> 2. In an echo if(condition){ echo “HTML here”; } With echos, if you wish to use double quotes in your HTML you must use single quote echos like so: echo … Read more