|
The entire html code between the table tags is shown below:
<table width="80%" border="1">
<tr>
<td>row 1</td>
</tr>
<tr>
<td>row 2
<?php
$quotenum = rand(1,31);
$fil = "quote".$quotenum.".txt";
include $fil;
?>
</td>
</tr>
<tr>
<td>row 3</td>
</tr>
</table>
It simply shows 3 rows with the text "row 1" (2 & 3) in each row. Interestingly enough, with the "row 2" text in the second row, the second row doesn't even display at all!
Any other things that need to be there? This is an *.htm file. Modify something in that htaccess file? Something else? Yes, I have verified and double verified that the quote1.txt through quote31.txt files exist in the root directory of the htm file.
Jon
|