Johng123 Posted January 24, 2010 Share Posted January 24, 2010 Why won't this work?? I get the error "The image “http://*******.net/itemGuide.php” cannot be displayed, because it contains errors." <php> if($_POST['field_1'] == "24k Gold Chain Gun") { echo "Req. Level 10 Eliminate Pro Special. Arsenal Megacorp issue sidearm level 1. +20 Attack, +30 Max HP, +3 Max Energy "; header('Content-Type: image/png'); $imgname = "http://image.epicpetwars.com/epw/square_".$_POST['field_2']."/items/gatling_gun_gold.png"; $im = @imagecreatefrompng($imgname); imagepng($im); } php?> </php> Link to comment https://forums.phpfreaks.com/topic/189661-why-wont-this-display-my-image/ Share on other sites More sharing options...
jl5501 Posted January 24, 2010 Share Posted January 24, 2010 The first problem I see, is that you are echoing something and then calling header() header() must be called before any output Link to comment https://forums.phpfreaks.com/topic/189661-why-wont-this-display-my-image/#findComment-1000970 Share on other sites More sharing options...
MadTechie Posted January 24, 2010 Share Posted January 24, 2010 1. are you posting to this image 2. remove the line echo "Req. Level 10 Eliminate Pro Special. Arsenal Megacorp issue sidearm level 1. +20 Attack, +30 Max HP, +3 Max Energy "; 3. php?> Link to comment https://forums.phpfreaks.com/topic/189661-why-wont-this-display-my-image/#findComment-1000992 Share on other sites More sharing options...
Johng123 Posted January 25, 2010 Author Share Posted January 25, 2010 The first problem I see, is that you are echoing something and then calling header() header() must be called before any output I just want that echoed out then the img to be displayed. Link to comment https://forums.phpfreaks.com/topic/189661-why-wont-this-display-my-image/#findComment-1000996 Share on other sites More sharing options...
jl5501 Posted January 25, 2010 Share Posted January 25, 2010 You cannot call header() after any output. Link to comment https://forums.phpfreaks.com/topic/189661-why-wont-this-display-my-image/#findComment-1001162 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.