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

Link to comment
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="' . $dir . '/' . $files[$rnd] . '">Get It</a>';
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.