aznkidzx Posted February 6, 2009 Share Posted February 6, 2009 Help? I have this image upload script. I store all the images in /images and I have this image randomization from one directory. It works perfectly fine, but I want to add to it. Is it possible for it to say "<a href="#">Get It</a>" next to the image? Thanks for helping. <?php /** * @desc PHP Code for showing random images from a directory */ //Assume That Images folder is placed in current directory and contain all of //the picture files $dir="images"; $files = scandir($dir); unset($files[0]); unset($files[1]); $rnd=rand(2,count($files)); echo "<img src='$dir/".$files[$rnd]."'>"; ?> Link to comment https://forums.phpfreaks.com/topic/144140-solved-echo-echo-echo/ Share on other sites More sharing options...
flyhoney Posted February 6, 2009 Share Posted February 6, 2009 <?php /** * @desc PHP Code for showing random images from a directory */ //Assume That Images folder is placed in current directory and contain all of //the picture files $dir="images"; $files = scandir($dir); unset($files[0]); unset($files[1]); $rnd=rand(2,count($files)); echo "<img src='$dir/".$files[$rnd]."'><a href=\"#\">Get It</a>"; ?> Link to comment https://forums.phpfreaks.com/topic/144140-solved-echo-echo-echo/#findComment-756332 Share on other sites More sharing options...
aznkidzx Posted February 6, 2009 Author Share Posted February 6, 2009 I dont literally mean to put <a href="#"> as the link. I need help so that the link is the link to the image shown. Link to comment https://forums.phpfreaks.com/topic/144140-solved-echo-echo-echo/#findComment-756335 Share on other sites More sharing options...
flyhoney Posted February 6, 2009 Share Posted February 6, 2009 <?php /** * @desc PHP Code for showing random images from a directory */ //Assume That Images folder is placed in current directory and contain all of //the picture files $dir="images"; $files = scandir($dir); unset($files[0]); unset($files[1]); $rnd=rand(2,count($files)); echo '<img src="' . $dir . '/' . $files[$rnd] . '"><a href="' . $dir . '/' . $files[$rnd] . '">Get It</a>'; ?> Link to comment https://forums.phpfreaks.com/topic/144140-solved-echo-echo-echo/#findComment-756350 Share on other sites More sharing options...
aznkidzx Posted February 6, 2009 Author Share Posted February 6, 2009 I am going to try it. --------------- Works! Woot! Ty! Link to comment https://forums.phpfreaks.com/topic/144140-solved-echo-echo-echo/#findComment-756354 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.