krs10_s Posted February 19, 2009 Share Posted February 19, 2009 How do i put writing between two post statements <?php print "{$_POST['hour']}";OVER HERE print "{$_POST['minute']}"; ?> Quote Link to comment Share on other sites More sharing options...
Ayon Posted February 19, 2009 Share Posted February 19, 2009 If you need to add alot of text, this would probably be the best one.. <?php echo $_POST['hour']; echo "Add your text here"; echo $_POST['minute']; ?> but if you only need to add the : between hour and minute you should just use this <?php echo $_POST['hour'].':'.$_POST['minute']; ?> Quote Link to comment 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.