Forum: PHP Sep 12th, 2004 |
| Replies: 1 Views: 2,488 Re: cronjob in PHP ? That is a php file that is automatically executed by the server at designated intervals. It can be used for many purposes such as deleting listings that are old, updating calenders, etc... |
Forum: PHP Sep 12th, 2004 |
| Replies: 11 Views: 4,803 Re: PHP newbie, project feasibility It would look something like this:
$sql = mysql_query("select name from table_name");
while ( $row = mysql_fetch_array($sql)) {
echo ("OPTION VALUE='$row[name]' ");
} |
Forum: PHP Sep 12th, 2004 |
| Replies: 11 Views: 4,803 Re: PHP newbie, project feasibility The project seems like a good place to get your feet wet with php / mysql. Initially it looks pretty simple. I would recommend using a db rather than text file so that mysql can do the math and... |
Forum: PHP Sep 12th, 2004 |
| Replies: 7 Views: 21,978 |