i have a table which is not showing, its showing the actual text. Here is the code:
<?php $form ="<form action='log.php' method='post'>
<table>
<tr>
<td>username</td>
<td>input type='text' name='user' /></td>
</tr>
<tr>
<td>password</td>
<td>input type='password' name='password' /></td>
</tr>
<tr>
<td></td>
<td>input type='submit' name='login' vaue='submit' /></td>
</tr>
</table>
</form>";
?>
It is not out-putting the table or the submit button or input area. Any suggestions why? Im using ubuntu with apache installed, normal tables, forms work and php is working but not when i try to output HTML using php its shows actual HTML and not its properties.