maineyak Posted December 23, 2008 Share Posted December 23, 2008 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? Quote Link to comment https://forums.phpfreaks.com/topic/138089-i-could-use-some-help/ Share on other sites More sharing options...
MadTechie Posted December 23, 2008 Share Posted December 23, 2008 You could dynamically create a animated gif/png but i wouldn't advise it.. it would be a cpu/memory hog.. why can't you just add the html under the <img src=myscript.jpg>? adding some static text ONTO the image wouldn't be hard Quote Link to comment https://forums.phpfreaks.com/topic/138089-i-could-use-some-help/#findComment-721834 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.