Jump to content

Too long spent on this


stuckwithcode

Recommended Posts

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

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.