[PHP] executing PHP via cron

2004-05-18 Thread shawn_milochik
How about just using cron to call wget, and wget the URL of your page? Shawn ** This e-mail and any files transmitted with it may contain confidential information and is intended solely for use by the individual to whom i

[PHP] free graphs

2004-05-11 Thread shawn_milochik
There are some nice free Java graphs that I use, from http://graphscharts.com/. They are easy to use, and free (if you don't mind their little watermark). Registration is extremely cheap, also. I use them at work with ASP pages. Shawn *

Re: [PHP] compile php

2004-01-12 Thread shawn_milochik
Easy solution: Use wget. http://unxutils.sourceforge.net/ If you're not familiar with wget, you can Google or e-mail me. Basically, a command of: wget www.yahoo.com results in an HTTP request to Yahoo and you will find an index.html in the directory from which you ran the command. In your case

Re: [PHP] to array or not to array..

2004-01-12 Thread shawn_milochik
Try adapting like this: foreach ($_POST as $key => $val){ #display each item from submitted form print "$key: $val"; } Shawn