Solarone Posted March 19, 2021 Share Posted March 19, 2021 At the moment I have <input type="hidden" name="iput-time1" value="2021-06-21 01:00"> and the time gets put in the script by $IpTime= $_POST['iput-time1']; So how can I get the time that I would put in <td>01:00</td> and do away with the hidden input bit. I have no idea even if I explained that right Quote Link to comment https://forums.phpfreaks.com/topic/312336-i-am-just-learning-and-have-a-question/ Share on other sites More sharing options...
phppup Posted March 19, 2021 Share Posted March 19, 2021 You're correct The explanation is confusing. But if you're trying to $_POST a specific time, you don't even need to bother with hiding it in HTML. Just create it as a variable in your PHP and insert it from there. There is A LOT of information of dates and time and their notations on the web. (The PHP manual and W3 sites are popular.) Quote Link to comment https://forums.phpfreaks.com/topic/312336-i-am-just-learning-and-have-a-question/#findComment-1585228 Share on other sites More sharing options...
Solarone Posted March 19, 2021 Author Share Posted March 19, 2021 Can I post the code and maybe it will make sense Quote Link to comment https://forums.phpfreaks.com/topic/312336-i-am-just-learning-and-have-a-question/#findComment-1585230 Share on other sites More sharing options...
requinix Posted March 19, 2021 Share Posted March 19, 2021 If you want to take the value "2021-06-21 01:00" and get the time portion then look at strtotime and date. Quote Link to comment https://forums.phpfreaks.com/topic/312336-i-am-just-learning-and-have-a-question/#findComment-1585231 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.