Re: [PHP] help - php script - no interaction

2008-10-16 Thread Dan Joseph
On Thu, Oct 16, 2008 at 1:10 PM, John Smtih <[EMAIL PROTECTED]> wrote: > http://www.site1.com > http://www.site2.com > http://www.site3.com > > > > I have 3 sites above in a html. I do not want to create click each site, > one at a time to see 1 page info. > I want to write a script to go get a

Re: [PHP] HELP !!!!! PHP SOAP Not building objects correctly

2008-05-16 Thread Tim Traver
Nathan Nobbe wrote: On Fri, May 16, 2008 at 1:04 PM, Tim Traver <[EMAIL PROTECTED] > wrote: Hi all, sorry for the cross post to the general PHP list as well as the SOAP PHP list, but I'm a little bit desperate... Ok, for some reason when I am sending

Re: [PHP] HELP !!!!! PHP SOAP Not building objects correctly

2008-05-16 Thread Nathan Nobbe
On Fri, May 16, 2008 at 1:04 PM, Tim Traver <[EMAIL PROTECTED]> wrote: > Hi all, > > sorry for the cross post to the general PHP list as well as the SOAP PHP > list, but I'm a little bit desperate... > > Ok, for some reason when I am sending the proper objects to the __soapCall > method, it is not

RE: [PHP] Help php MySql link

2002-05-03 Thread John Holmes
> $db = ("localhost","databasename","databasepassword"); maybe add in a MySQL_connect() somewhere in there??? ---John Holmes... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] help php

2001-11-29 Thread Tyler Longren
Hi Hai, Make sure you make the correct entries in httpd.conf. You might be able to uncomment the following lines from httpd.conf: AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps Just search for those lines in httpd.conf. If they exist, remove the '#' at the be

Re: [PHP] HELP!! PHP not working Suddenly!!!

2001-05-04 Thread Thomas Edison Jr.
i was gonna die until u came along, at least you have given me some hope. i'm not able 2 eat since this happened. anyway, > already have contained the correct stuff - did you > change anything? yes, because the earlier php were in very different folders..i had a pretty pretty early version of PH

Re: [PHP] HELP!! PHP not working Suddenly!!!

2001-05-04 Thread Phil Driscoll
If you were replacing an earlier version of php, your registry should already have contained the correct stuff - did you change anything? What does ka-BOom actually mean in terms of error messages etc? >From the command line, change to the folder containing php.exe, type php.exe -i and see if yo

Re: [PHP] help!!! (PHP)

2001-01-23 Thread Joe Stump
Use cron for this - put the following in your crontab ("crontab -e") to run a script everyday at midnite: 0 0 * * * lynx -source http://www.server.com/script_to_run_every_night.php man crontab will tell you how to run on different days, etc. --Joe On Tue, Jan 23, 2001 at 09:53:13AM -0300, Bru

RE: [PHP] help!!! (PHP)

2001-01-23 Thread Kees Hoekzema
Hey Bruno, Information to generally setup a cron tab : How do I set up a cron job on Linux? --- http://www.faqts.com/knowledge_base/view.phtml/aid/1005/fid/436 In regards to php : How can I make a PHP script be cal