So I have a date input that automatically sets the date 8 days later like this:
<input type="date" name="pdate" value="<?php echo date("Y-m-d", time() + 691200); ?>" required>
So now this will display 03/13/2021
as the date, but is it possible to skip Saturday and Sunday, so if the date in 8 days is Saturday or Sunday, it will automatically set date as the Money after insted?