Jump to content

Recommended Posts

Hey,

 

Just looking for a little help with this. I have a table in my DB that has a date and time column. Bascially it allows an admin to block a date to stop a customer from making a booking. So if I have a list of dates that were blocked, how would I loop through them and check it against the value the customer has entered?

 

 

Customer enters 28/1/08

 

 

Dates Blocked...     

 

27/1/08

28/1/08

02/2/08

05/3/08

 

message "This date is not available".

Link to comment
https://forums.phpfreaks.com/topic/88180-loop-to-check-a-value/
Share on other sites

if the blocked list is saved in a database. Then try the following

 

1) select everything from the blocked table

2) use mysql_fetch_array

3) then using

 

foreach($database_array_name as $blocked)

{

if($blocked == $datefromcustomer)

{

echo "date not allowed";

}

else

{

update

}

Link to comment
https://forums.phpfreaks.com/topic/88180-loop-to-check-a-value/#findComment-451137
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.