Adding this array into one field in the database, as other content relational to each business will be included.
The Array is working fine with the below, however unable to format this in a html table and to not only group Mon-Fri if its the same (or combonations), however to also exclude if that particular day is closed (ie Public Holidays, By Appointment)
Some solutions here have had mixed results, however when looking into them some of the ways this could be done have not worked in my case. As i also need to output the shorthand of the Day as well. So Key also is used and value is also used.
The code is below, and need it to ignore the the closed option[1] and replace it with By Appointment or Closed if selected by the first Open option[0].
ALso have shortened the way the selects are created by looping them for each day of the week and have done a manual one for public holidays.
Also need those values also used for when the form is opened again for it to be edited.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Test</title>
</head>
<body>
<?php
// min array for hours
$min=array("00","15","30","45");
?>
<form id="opening" name="opening" method="post" action="<?=$HTTP_SERVER_VARS['PHP_SELF']?>">
<table width="100%" border="1">
<tr>
<td bgcolor="#999999">Day</td>
<td bgcolor="#999999">From</td>
<td bgcolor="#999999">To</td>
</tr>
<tr>
<td>Mon</td>
<td><label>
<select name="hours[Mon][]">
<?php
for($i=1;$i<13;$i++)
foreach ($min as $v)
print "<option>$i:$v AM</option>";
?>
</select>
</label></td>
<td> <select name="hours[Mon][]">
<?php
for($i=1;$i<13;$i++)
foreach ($min as $v)
print "<option>$i:$v PM</option>";
?>
</select></td>
</tr>
<tr>
<td>Tues</td>
<td> <select name="hours[Tue][]">
<?php
for($i=1;$i<13;$i++)
foreach ($min as $v)
print "<option>$i:$v AM</option>";
?>
</select></td>
<td> <select name="hours[Tue][]">
<?php
for($i=1;$i<13;$i++)
foreach ($min as $v)
print "<option>$i:$v PM</option>";
?>
</select></td>
</tr>
<tr>
<td>Wed</td>
<td> <select name="hours[Wed][]">
<?php
for($i=1;$i<13;$i++)
foreach ($min as $v)
print "<option>$i:$v AM</option>";
?>
</select></td>
<td> <select name="hours[Wed][]">
<?php
for($i=1;$i<13;$i++)
foreach ($min as $v)
print "<option>$i:$v PM</option>";
?>
</select></td>
</tr>
<tr>
<td>Thu</td>
<td> <select name="hours[Thu][]">
<?php
for($i=1;$i<13;$i++)
foreach ($min as $v)
print "<option>$i:$v AM</option>";
?>
</select></td>
<td> <select name="hours[Thu][]">
<?php
for($i=1;$i<13;$i++)
foreach ($min as $v)
print "<option>$i:$v PM</option>";
?>
</select></td>
</tr>
<tr>
<td>Fri</td>
<td> <select name="hours[Fri][]">
<?php
for($i=1;$i<13;$i++)
foreach ($min as $v)
print "<option>$i:$v AM</option>";
?>
</select></td>
<td> <select name="hours[Fri][]">
<?php
for($i=1;$i<13;$i++)
foreach ($min as $v)
print "<option>$i:$v PM</option>";
?>
</select></td>
</tr>
<tr>
<td>Sat</td>
<td> <select name="hours[Sat][]">
<?php
for($i=1;$i<13;$i++)
foreach ($min as $v)
print "<option>$i:$v AM</option>";
?>
</select></td>
<td> <select name="hours[Sat][]">
<?php
for($i=1;$i<13;$i++)
foreach ($min as $v)
print "<option>$i:$v PM</option>";
?>
</select></td>
</tr>
<tr>
<td>Sun</td>
<td> <select name="hours[Sun][]">
<?php
for($i=1;$i<13;$i++)
foreach ($min as $v)
print "<option>$i:$v AM</option>";
?>
</select></td>
<td> <select name="hours[Sun][]">
<?php
for($i=1;$i<13;$i++)
foreach ($min as $v)
print "<option>$i:$v PM</option>";
?>
</select></td>
</tr>
<tr>
<td>Pub</td>
<td> <select name="hours[Pub][]">
<?php
for($i=1;$i<13;$i++)
foreach ($min as $v)
print "<option>Closed</option>";
print "<option>By Appointment</option>";
print "<option>$i:$v AM</option>";
?>
</select></td>
<td> <select name="hours[Pub][]">
<?php
for($i=1;$i<13;$i++)
foreach ($min as $v)
print "<option>$i:$v PM</option>";
?>
</select></td>
</tr>
</table>
<input name="" type="submit" />
<input name="" type="reset" />
</form>
<?php
echo '<pre>';
print_r ($_POST);
echo '</pre>';
// print_r ($HTTP_POST_VARS);
// OUTPUT ARRAY
echo '<br />';echo '<br />';echo '<br />';
//$hours = $_POST;
echo '<br />';echo '<br />';echo '<br />';
$openHours = array($_POST['hours']);
echo '<br /><br /><br /><br />';
//OPEING HOURS
$outputHours = implode(",", $openHours);
echo $outputHours;
?>
</body>
</html>
Array output is below:
Array
(
[hours] => Array
(
[Mon] => Array
(
[0] => 1:00 AM
[1] => 1:00 PM
)
[Tue] => Array
(
[0] => 1:00 AM
[1] => 1:00 PM
)
[Wed] => Array
(
[0] => 1:00 AM
[1] => 1:00 PM
)
[Thu] => Array
(
[0] => 1:00 AM
[1] => 1:00 PM
)
[Fri] => Array
(
[0] => 1:00 AM
[1] => 1:00 PM
)
[Sat] => Array
(
[0] => 1:00 AM
[1] => 1:00 PM
)
[Sun] => Array
(
[0] => 1:00 AM
[1] => 1:00 PM
)
[Pub] => Array
(
[0] => CLOSED
[1] => 1:00 PM
)
)
)
Can anyone help with this one please, as i have tryed different approaches and ideas to make this work and not helped, and pulled back this to what is working as may have overbaked my brain thinking of different solutions.