[PHPLIB] Re: (none) From: Kristian Koehntopp (kris <email protected>)
Date: 04/09/00

In netuse.lists.phplib you write:
>I have a php script file which I would like to execute at a specific
>interval on my apache web server on a linux system.

This is a PHP question and does not belong on this list.

You can call a PHP script like a shell script if you have a CGI
version of your PHP interpreter and write your script like this:

#! /path/to/cgi/php -q
<?php
  print "hello, world\n";
 ?>

Alternatively you are using mod_php and wget to start a web
request for your script in regular intervals.

Kristian

-
PHP3 Base Library Mailing List. Send messages to <phplib <email protected>>.
To unsubscribe, send "unsubscribe" to <phplib-request <email protected>> in
the body, not the subject, of your message.