|
the date is on the left of the screen how can i position wherever i want
<?php
putenv("TZ=US/Eastern");
echo " We are" .date("D , M , Y");
echo " and is it " .date ("H:i:s");
?>
<html>
<head>
<script type="text/javascript">
window.onload = doload()
function doload()
{
setTimeout ('refresh()', 1*1000);
}
function refresh()
{
window.location.reload(false);
}
</script>
</head>
<body>
<div id="container">
</div>
</body>
</html>
|