Hello can you please help that how i can get description by this loop ?
$timepicker = $_POST['timepicker'];
$discription = $_POST['description'];
foreach( $timepicker as $key => $n )
{
print "".$n." ".$discription[$key]."\n";
}
Hello can you please help that how i can get description by this loop ?
$timepicker = $_POST['timepicker'];
$discription = $_POST['description'];
foreach( $timepicker as $key => $n )
{
print "".$n." ".$discription[$key]."\n";
}
<?php
for ($i = 0, $i<= count($_POST['timepicker']); $i++){
echo $timep=$_POST['timepicker'][$i]."<br>";
echo $name = $_POST['fullname'][$i]."<br>"; // get name
echo $job = $_POST['description'][$i]."<br>"; // get jobtitle
}
?>