Hi All,
How do you use div class' in php such that you can attach html generated by php into that div class. Example
<html>
<head>
</head>
<body>
<div class="border">
</div>
<?php
echo "This needs to go into the class border"
?>
</body>
</html>