hakmir Posted November 7, 2008 Share Posted November 7, 2008 Hi guys, I want to echo this code if(($countryfiled=="please select")||($visatype=="please select")) { $notice="<h3>PLEASE DO NOT LEAVE COUNTRY OR VISA TYPE EMPTY</h3>"; echo "<FONT color='red'>$notice</font>"; } at top of the page. Now it is echoing at the bottom. I don't want it to echo at the bottom of the page. Because visitor may not see it and think that their form is successfully submitted. But I don't know how to echo it on top of the page. Action is SELF. Thanks in advance Quote Link to comment https://forums.phpfreaks.com/topic/131810-solved-echo-on-top-of-the-page/ Share on other sites More sharing options...
.josh Posted November 7, 2008 Share Posted November 7, 2008 umm..just move that chunk of code to the top of your script? Quote Link to comment https://forums.phpfreaks.com/topic/131810-solved-echo-on-top-of-the-page/#findComment-684713 Share on other sites More sharing options...
hakmir Posted November 7, 2008 Author Share Posted November 7, 2008 I thought about it but didn't want to mess things up. I will try that. Thank you. Is there any code that when the page reloads it goes to certain place in the page? Quote Link to comment https://forums.phpfreaks.com/topic/131810-solved-echo-on-top-of-the-page/#findComment-684723 Share on other sites More sharing options...
.josh Posted November 7, 2008 Share Posted November 7, 2008 Well you could make it a function and call it at the top of your script, but php doesn't do "gosub...return" spaghetti coding. Quote Link to comment https://forums.phpfreaks.com/topic/131810-solved-echo-on-top-of-the-page/#findComment-684728 Share on other sites More sharing options...
hakmir Posted November 7, 2008 Author Share Posted November 7, 2008 I solved the problem. I used $_POST[...] to take the value to top of the page then from there I used if and if else. Thanks for helping Quote Link to comment https://forums.phpfreaks.com/topic/131810-solved-echo-on-top-of-the-page/#findComment-684831 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.