asked on
<?php if($dayt == '1'){ }?>
</td>
<td>
<center>
<input type="checkbox" class="colour-button cbb" name="v1" value="10 - 12" id="btn1012" /><label for="btn1012"> <i class="fa fa-check-circle hide12" id="chk-btn1012"></i> <?php echo $dayt?></label>
<input type="checkbox" class="colour-button cbb" name="v1" value="10 - 12" id="btn1214" /><label for="btn1214" class="labe"><i class="fa fa-check-circle hide12" id="chk-btn1214"></i> <?php echo $row3[10]?></label>
</center>
</td>
<td>
<?php }?>
</td>
<td>
<center>
<input type="checkbox" class="colour-button cbb22" name="v2" value="10 - 12" id="btn10" /><label for="btn10"><i class="fa fa-check-circle hide13" id="chk-btn10"></i> 10am - 12pm</label>
<input type="checkbox" class="colour-button cbb22" name="v2" value="10 - 12" id="btn12" /><label for="btn12" class="labe"><i class="fa fa-check-circle hide13" id="chk-btn12"></i> 5pm - 7pm</label>
</center>
<script>
$(function() {
$(".colour-button").click(enable_cb);
});
function enable_cb() {
if (this.checked) {
//this will mean at least one is always checked
$("input.colour-button1").prop("disabled", false);
$("#chk-" + this.id).show();
}
else {
//in this case, hide the element if you need to, but check for ANY items
//$("input.colour-button1").attr("disabled", true);
$("#chk-" + this.id).hide();
if ($(".colour-button:checked").length == 0) {
$("input.colour-button1").attr("disabled", true).prop("checked", false);
$('.hide11').hide();
$('#submit').attr('disabled', true).removeClass('orangeBtn23').addClass('disabled'); //disable input
}
}
}
</script>
While($row= mysqli_query_rows($result)){
//MY CODE SHOWN ABOVE
}
ASKER
<?php // demo/temp_jasmine.php
/**
* https://www.experts-exchange.com/questions/29011721/Change-static-entered-data-to-dynamic-with-counter.html
*/
error_reporting(E_ALL);
echo '<pre>';
// SIMULATED RESULTS SET
$rows = [ 'a', 'b', 'c' ];
// SET A COUNTER
$num = 0;
// ARRAY SHIFT WOULD BE REPLACED WITH THE APPROPRIATE "_FETCH" METHOD
while ($row = array_shift($rows))
{
// INCREMENT THE COUNTER
$num++;
$new = $row[0] . $num;
echo PHP_EOL . $new;
}
ASKER
PHP is a widely-used server-side scripting language especially suited for web development, powering tens of millions of sites from Facebook to personal WordPress blogs. PHP is often paired with the MySQL relational database, but includes support for most other mainstream databases. By utilizing different Server APIs, PHP can work on many different web servers as a server-side scripting language.
TRUSTED BY