Hey,
I'm trying to put up a comic archive, and I came into a problem.
I follow the directions exactly, and the only thing I get is a red X and "> appearing on the page.
Here's the coding.
This is the link to the path:
<?include("comics/"); ?>
And here's the coding for the archive:
<p align="center" class="style1">LATEST COMIC</p>
<p align="center">
<img src=<* print("\"{$directoryComics}{$comic[$strip_id]}\" {$dimensions[3]}"); *>">
<br>
| <? if($strip_id != 0) {print("<a href=\"?strip_id=0\">FIRST</a>");} ?> |
<? if($strip_id > 0) {$x = $strip_id-1; print("<a href=\"?strip_id=$x\">PREVIOUS</a>");} ?> |
<? if( (($strip_id+1) < sizeof($comic)) && validDate($comic[($strip_id+1)])) {$x = $strip_id+1; print("<a href=\"?strip_id=$x\">NEXT</a>");} ?> |
<? if( (validDate($comic[($strip_id+1)])) && ($strip_id != sizeof($comic)-1)) {print("<a href=\"?\">LATEST</a>");} ?> |