[PHP] game in php

2003-09-07 Thread phpu
Hello, I wanna create an online game in php and mysql and I have a problem. I have this database with this fields; id and number_attacks. And every 10 minutes number_attack to be increased by 1. How can i do that? Thanks

Re: [PHP] game in php

2003-09-07 Thread Jon Haworth
Hi, I have this database with this fields; id and number_attacks. And every 10 minutes number_attack to be increased by 1. You'll need to set up some sort of scheduled task (if you're on unix, your best bet is probably cron) - this task should call a script that connects to your database and

RE: [PHP] game in php

2003-09-07 Thread mek2600-php
:[EMAIL PROTECTED] Sent: Sunday, September 07, 2003 5:10 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] game in php *This message was transferred with a trial version of CommuniGate(tm) Pro* Hi, I have this database with this fields; id and number_attacks. And every 10 minutes number_attack

RE: [PHP] game in php

2003-09-07 Thread Mike Brum
... -Original Message- From: Jon Haworth [mailto:[EMAIL PROTECTED] Sent: Sunday, September 07, 2003 6:10 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] game in php Hi, I have this database with this fields; id and number_attacks. And every 10 minutes number_attack to be increased by 1. You'll need