|
Posted by badmets@gmail.com on 03/01/07 16:43
hey-- im a php newbie, and am trying to figure out how to add a
hyperlink to the images i am using in a shuffle array. in other
words, i have a page that displays random images via the shuffle
script, and i want those images to have hyperlinks. can anyone lead
me in the right direction? here's the script:
$pictures = array('http://url1.jpg', 'http://url2.jpg');
shuffle($pictures);
?>
<?php
for ( $i = 0; $i < 1; $i++ )
{
echo '<img src=';
echo $pictures[$i];
Navigation:
[Reply to this message]
|