Hi I am trying to take a series of short strings, $mystrings and position them at
random positions on a html page with the ability to overlap. The strings
feed from a mysql database so I would rather do this server side with php than on
the client with javascript. My effort below fails on the print line. Grateful if anyone can guide me here.
<html>
<head>
<style type="text/css"></style>
<?php
$myarray = array("aa","bb","cc","dd","ee");
foreach($myarray as $val)
{
print"<div align="center"><h1><? print $val ?></h1></div>";
}
?>