comptech520
08-13-2006, 12:18 PM
Hello,
When I put this code on a page and load it in a browser, I get I white screen, and I checked my server error log and it said that there was an unexpcted $ on line 106.
Here is the code that would be causing the problem. Does it look ok to you?
<?php
//Photo Viewer Path - DO NOT INCLUDE TRAILING SLASHES
$viewer="http://yahoo.com/gallery/view.php?img=";
//Photo directory path - DO NOT INCLUDE TRAILING SLASHES
$photo_dir="http://yahoo.com/gallery";
//Photo Extenstion
$extension="JPG";
//"alt" tag for photos
$alt="Yahoo";
//Page Land
$startLAND="1"; $endLAND="5";
//Page Port
$startPORT="1"; $endPORT="4";
?>
<h3>Yahoo</h3>
<h2>Landscape Photos</h2>
<?php
for($i = $startLAND; $i < $endLAND; $i++) {
?>
<li><a href="" onFocus="this.blur()" onClick="popUpL('<?php echo $viewer; ?><?php echo $i; ?>');return false">
<img src=<?php echo $photo_dir; ?>/<?php echo $i; ?>.<?php echo $extension; ?> alt='<?php echo $alt; ?>' border=0 width=160 height=120></a></li>
<h2>Portrait Photos</h2>
<?php
for($i = $startPORT; $i < $endPORT; $i++) {
?>
<li><a href="" onFocus="this.blur()" onClick="popUpP('<?php echo $viewer; ?><?php echo $i; ?>');return false">
<img src=<?php echo $photo_dir; ?>/<?php echo $i; ?>.<?php echo $extension; ?> alt='<?php echo $alt; ?>' border=0 width=85 height=100></a></li>
When I put this code on a page and load it in a browser, I get I white screen, and I checked my server error log and it said that there was an unexpcted $ on line 106.
Here is the code that would be causing the problem. Does it look ok to you?
<?php
//Photo Viewer Path - DO NOT INCLUDE TRAILING SLASHES
$viewer="http://yahoo.com/gallery/view.php?img=";
//Photo directory path - DO NOT INCLUDE TRAILING SLASHES
$photo_dir="http://yahoo.com/gallery";
//Photo Extenstion
$extension="JPG";
//"alt" tag for photos
$alt="Yahoo";
//Page Land
$startLAND="1"; $endLAND="5";
//Page Port
$startPORT="1"; $endPORT="4";
?>
<h3>Yahoo</h3>
<h2>Landscape Photos</h2>
<?php
for($i = $startLAND; $i < $endLAND; $i++) {
?>
<li><a href="" onFocus="this.blur()" onClick="popUpL('<?php echo $viewer; ?><?php echo $i; ?>');return false">
<img src=<?php echo $photo_dir; ?>/<?php echo $i; ?>.<?php echo $extension; ?> alt='<?php echo $alt; ?>' border=0 width=160 height=120></a></li>
<h2>Portrait Photos</h2>
<?php
for($i = $startPORT; $i < $endPORT; $i++) {
?>
<li><a href="" onFocus="this.blur()" onClick="popUpP('<?php echo $viewer; ?><?php echo $i; ?>');return false">
<img src=<?php echo $photo_dir; ?>/<?php echo $i; ?>.<?php echo $extension; ?> alt='<?php echo $alt; ?>' border=0 width=85 height=100></a></li>