BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
console.log(formObject['date'][0].value) |
<input name="daterange[]" id="date" />
<?php
if(isset($_GET['submit'])) {
$username = $_GET['daterange'];
foreach( $username as $key => $n ) {
print $n."\n";
}
}
?> |