Jump to content

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

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.