Linux-Noob Forums
Test Code - Printable Version

+- Linux-Noob Forums (https://www.linux-noob.com/forums)
+-- Forum: Screenshots (https://www.linux-noob.com/forums/forum-6.html)
+--- Forum: General (https://www.linux-noob.com/forums/forum-80.html)
+--- Thread: Test Code (/thread-3934.html)



Test Code - kZo - 2003-12-16


Just want to display a test.

 

<?php

$foo = "Hello,";

$bar = "world";

 

echo $foo; echo $bar;

?>

 



Code:
<?php $foo = "Hello,"; $bar = "world"; echo $foo; echo $bar; ?>







Test Code - kZo - 2003-12-16


<table>

<tr>

<td>TEST</td>

</tr>

</table>

 



Code:
<table> <tr> <td>TEST</td> </tr> </table>