Jump to content

image display problem


paulbrown

Recommended Posts

First of all I would like to apologise for my ignorance.  I am not much of a programmer. If you can help it will be greatly appreciated.  I help to maintain a local youth choir’s web site and I decide that this year I would try to use some PHP code to help stream line the site and make it easier to maintain.  Everything seems to be working fine with one exception.  I am trying to use some code I found on the web to call random images each time the page is refreshed.  It works fine but when I try to use an include statement in the main page and have the main code called from a separate file it won’t work.

 

Here is the code that I am including into the main page.

 

<?php

 

$total = "6";

 

$file_type = ".jpg";

 

$image_folder = "rightimages";

 

$start = "1";

 

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

 

$image_name = $random . $file_type;

 

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

 

?>

 

It does not seem to get the image but it does display the alt text where the image should be.

 

Help!

Thanks

Paul

Link to comment
Share on other sites

try:

 

<?php

 

$total = "6";

 

$file_type = ".jpg";

 

$image_folder = "rightimages";

 

$start = "1";

 

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

 

$image_name = $random . $file_type;

 

echo '<img src="$image_folder/$image_name" class="picB" alt="$image_name" />';

 

?>

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.