stuckwithcode Posted January 21, 2010 Share Posted January 21, 2010 In one file I have the following php code along with a load of html stuff: <?php echo "<img src='images.php'>"; ?> In the seperate images.php file I have this code, which produces a black square. <?php $W = 100; $H = 100; $Img = imagecreatetruecolor($W, $H); header('Content-type: image/jpeg'); imagejpeg($Img); ?> How can I get the black box to output in the same page as all of my html, instead it displays in its own new page. p.s the images.php file has more to it than that , I just cant get this basic thing to work at the moment. Can anyone help me? Thanks Link to comment https://forums.phpfreaks.com/topic/189302-too-long-spent-on-this/ Share on other sites More sharing options...
deansatch Posted January 21, 2010 Share Posted January 21, 2010 That works fine for me. Link to comment https://forums.phpfreaks.com/topic/189302-too-long-spent-on-this/#findComment-999356 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.