Jump to content

[SOLVED] add html between two POST???


krs10_s

Recommended Posts

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']; ?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.