Jump to content

Border around php images


ShaolinF

Recommended Posts

Hi guys,

 

I want to put borders around my php made images. Here is the code:

 

<?php

// Change this to the total number of images in the folder
$total = "3";

// Change to the type of files to use eg. .jpg or .gif
$file_type = ".jpg";

// Change to the location of the folder containing the images
$image_folder = "images";

// You do not need to edit below this line

$start = "1";

$random = mt_rand($start, $total);

$image_name = $random . $file_type;

echo "<img src=\"$image_folder/$image_name\" alt=\"$image_name\" />";

?>

Link to comment
Share on other sites

echo "<img src=\"$image_folder/$image_name\" alt=\"$image_name\" border=\"1\" bordercolor=\"grey\" />";

 

or with css

 

echo "<img src=\"$image_folder/$image_name\" alt=\"$image_name\" border=\"1\" style=\"border: solid grey;\" />";

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.