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']}"; ?> Link to comment https://forums.phpfreaks.com/topic/145907-solved-add-html-between-two-post/ 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']; ?> Link to comment https://forums.phpfreaks.com/topic/145907-solved-add-html-between-two-post/#findComment-766039 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.