Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Software Development
Programming
Programming Q&A
PHP Script as Image
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="GarettM" data-source="post: 272528" data-attributes="member: 839"><p>Are u sure u know what your asking?</p><p></p><p>But to answer your question:</p><p>[HTML]<img src="image.php" />[/HTML]</p><p>[PHP]<?php</p><p></p><p>Header('Content-Type: Image/png');</p><p></p><p>$image = file_get_contents('image.PNG');</p><p></p><p>Echo $image;[/PHP]</p><p></p><p>Also to get a certain image </p><p>[PHP]</p><p><?php</p><p>If(isset($_GET['SRC'])):</p><p> If(file_exists("images/{$_GET[SRC]}.png")):</p><p> $img = file_get_contents("images/{$_GET[SRC]}.PNG");</p><p> Else:</p><p> // get pack up or not found image</p><p> Endif;</p><p>Endif;</p><p>?></p><p>[/PHP]</p><p></p><p>Sorry I am on my phone lollz</p></blockquote><p></p>
[QUOTE="GarettM, post: 272528, member: 839"] Are u sure u know what your asking? But to answer your question: [HTML]<img src="image.php" />[/HTML] [PHP]<?php Header('Content-Type: Image/png'); $image = file_get_contents('image.PNG'); Echo $image;[/PHP] Also to get a certain image [PHP] <?php If(isset($_GET['SRC'])): If(file_exists("images/{$_GET[SRC]}.png")): $img = file_get_contents("images/{$_GET[SRC]}.PNG"); Else: // get pack up or not found image Endif; Endif; ?> [/PHP] Sorry I am on my phone lollz [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Software Development
Programming
Programming Q&A
PHP Script as Image
Top