Jump to content

[SOLVED] Echo Echo Echo


aznkidzx

Recommended Posts

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

<?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>";
?>

<?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>';
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.