my problem is, that when you login you see
a table, with logging in and stuff, however, you also see it if your not being logged in...
How do I have PHP with html? so say like
Code: Select all
<html>
<body>
<head>
</head>
<?php
function user()
{
<table = border='1' etc..>
<tr>
<td>Blah</td>
</tr>
</table>
}
?>
</body>
</html>is that possible?