BroChris
04-23-2003, 08:32 PM
I'm still really new to php, trying to learn as I go.
On one page, I have this:
<a href="pictures.php?pic1">
<img src="images/pic1-t.jpg" class="pic" width=75 height=75 alt="picture">
</a>
Then, on pictures.php I have this:
<img src="images/
<?php echo $_GET ?>
.jpg class="pic" width=640 height=480 alt="picture">
I think you can tell what I'm trying to do. The result is that the image on pictures.php looks instead for Array.jpg, and is therefore a broken image. What am I doing wrong?
(the line breaks above are only for readability on this forum. the actual pages do not have line breaks)
On one page, I have this:
<a href="pictures.php?pic1">
<img src="images/pic1-t.jpg" class="pic" width=75 height=75 alt="picture">
</a>
Then, on pictures.php I have this:
<img src="images/
<?php echo $_GET ?>
.jpg class="pic" width=640 height=480 alt="picture">
I think you can tell what I'm trying to do. The result is that the image on pictures.php looks instead for Array.jpg, and is therefore a broken image. What am I doing wrong?
(the line breaks above are only for readability on this forum. the actual pages do not have line breaks)