skyscape Posted September 14, 2007 Share Posted September 14, 2007 Here is the code line within php tags This line works if I echo words echo "<a href=payment.php>Click here to purchase a membership.</a>"; But echo image doesnt work echo "a href=payment.php><img src="images_files/button_upgrade.gif"></a>"; I get a Parse error: syntax error, unexpected T_STRING, expecting on the page because the script cannot echo the image. I dont know how to write the code correctly so that image would show up that people can click on. Thanks for your help Quote Link to comment https://forums.phpfreaks.com/topic/69382-need-help-with-echo-images/ Share on other sites More sharing options...
phat_hip_prog Posted September 14, 2007 Share Posted September 14, 2007 Could you modify last post but use code tags, it looks like half the html is missing... Quote Link to comment https://forums.phpfreaks.com/topic/69382-need-help-with-echo-images/#findComment-348605 Share on other sites More sharing options...
wildteen88 Posted September 14, 2007 Share Posted September 14, 2007 You need to escape the quotes (") within your string: echo "<a href=\"payment.php\"><img src=\"images_files/button_upgrade.gif\"></a>"; Quote Link to comment https://forums.phpfreaks.com/topic/69382-need-help-with-echo-images/#findComment-348606 Share on other sites More sharing options...
skyscape Posted September 14, 2007 Author Share Posted September 14, 2007 alright that worked one more question. It is showing border around the image how do i put in this tag border=0 Thanks Quote Link to comment https://forums.phpfreaks.com/topic/69382-need-help-with-echo-images/#findComment-348614 Share on other sites More sharing options...
AndyB Posted September 15, 2007 Share Posted September 15, 2007 echo "<a href=\"payment.php\"><img src=\"images_files/button_upgrade.gif\" border=\"0\"></a>";[code] [/code] Quote Link to comment https://forums.phpfreaks.com/topic/69382-need-help-with-echo-images/#findComment-348741 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.