Jump to content

I could use some help...


maineyak

Recommended Posts

Hi all,

Now, I'm no coder, that's why I'm here. I have this small script, and I would like to be able to call an image, with html I can included with the image. So calling <img src=myscript.jpg>, which call on myscript.php. I have .htaccess set up like so:

 

Redirect myscript.jpg http://www.mydomain.com/myscript.php

That part I know. Here's the script I have:

 

<?php

define('DS', DIRECTORY_SEPARATOR);
define('WEBROOT', dirname(__FILE__).DS);

$image = WEBROOT.'test.jpg';
header('Content-Type: image/jpeg');
header('Content-Length: '.filesize($image));
readfile($image);

?>

Now, I have it so it works, and brings up the image. Is there a way I can include php codes in the php file too, that will show under the image? I would like to be able to call the image using <img src=myimage.jp>that will show some rotating text or html under it?

Link to comment
https://forums.phpfreaks.com/topic/138089-i-could-use-some-help/
Share on other sites

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.