![]() |
|
|
+ Search |
![]()
|
Jul 23rd, 2003 02:29
Praveen Kumar Kukkapalli, Craig Byron,
Include the .php file in the table where you want to display.
You can see the example below where rand.php which is generating random
number is displaying in a table.
<html>
<body>
<table>
<tr>
<td>
<?php
include("rand.php");
?>
</td>
</tr>
</table>
</body>
</html>