php-general Digest 23 Nov 2010 15:23:27 -0000 Issue 7050

2010-11-23 Thread php-general-digest-help
php-general Digest 23 Nov 2010 15:23:27 - Issue 7050 Topics (messages 309612 through 309637): Re: Wordpress Page: How to add pagination? 309612 by: Steve Staples Can't find existing file 309613 by: Dee Ayy 309614 by: Daniel P. Brown 309615 by: Daniel P.

php-general Digest 24 Nov 2010 05:33:44 -0000 Issue 7051

2010-11-23 Thread php-general-digest-help
php-general Digest 24 Nov 2010 05:33:44 - Issue 7051 Topics (messages 309638 through 309645): is this thing on?? 309638 by: Steve Staples 309639 by: Peter Lind 309640 by: Steve Staples 309641 by: Daniel Brown 309642 by: Daniel P. Brown 309643

Re: [PHP] Procedural Autoloader?

2010-11-23 Thread Steve Staples
On Mon, 2010-11-22 at 15:26 -0800, David Harkness wrote: On Mon, Nov 22, 2010 at 3:05 PM, Richard Quadling rquadl...@gmail.comwrote: Would it be overboard to use a namespace? Aren't namespaces handled by the autoloader? If not autoload(), how about spl_autoloading? Autoloading is for

[PHP] is this thing on??

2010-11-23 Thread Steve Staples
tap tap tap... testing testing... 1, 2, 3 Hello?No activity since yesterday at like 6pm EST... am i not getting messages, or has there not been any activity? Just curious... carry on about your business... :P Steve -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] is this thing on??

2010-11-23 Thread Peter Lind
On 23 November 2010 20:52, Steve Staples sstap...@mnsi.net wrote: tap tap tap... testing testing... 1, 2, 3 Hello?    No activity since yesterday at like 6pm EST... am i not getting messages, or has there not been any activity? Just curious... carry on about your business... :P

Re: [PHP] is this thing on??

2010-11-23 Thread Steve Staples
On Tue, 2010-11-23 at 20:55 +0100, Peter Lind wrote: On 23 November 2010 20:52, Steve Staples sstap...@mnsi.net wrote: tap tap tap... testing testing... 1, 2, 3 Hello?No activity since yesterday at like 6pm EST... am i not getting messages, or has there not been any activity?

Re: [PHP] is this thing on??

2010-11-23 Thread Daniel Brown
On Tue, Nov 23, 2010 at 14:55, Peter Lind peter.e.l...@gmail.com wrote: http://news.php.net/php.general - please, next time, don't spam tons of people. We've never really minded the occasional list-ping. In fact, if you check those same archives through the decade, you'll see that even

Re: [PHP] is this thing on??

2010-11-23 Thread Daniel P. Brown
On Tue, Nov 23, 2010 at 14:52, Steve Staples sstap...@mnsi.net wrote: tap tap tap... testing testing... 1, 2, 3 Hello?    No activity since yesterday at like 6pm EST... am i not getting messages, or has there not been any activity? Just curious... carry on about your business... :P

Re: [PHP] is this thing on??

2010-11-23 Thread Nicholas Kell
Whitetail hunting season, for most of the American Midwest anyway. :) On Nov 23, 2010, at 2:01 PM, Steve Staples wrote: On Tue, 2010-11-23 at 20:55 +0100, Peter Lind wrote: On 23 November 2010 20:52, Steve Staples sstap...@mnsi.net wrote: tap tap tap... testing testing... 1, 2, 3

[PHP] curl and variable parameters in hyperlink

2010-11-23 Thread Bob Keightley
First use of Curl so probably a very simple problem - I have a script which loads a third party web page into my site. That page contains links which have variable parameters i.e. www.blahblah.asp?param1=xxxparam2=yyy. Any clues as to what I need to do to pass these parameters in a curl script

RE: [PHP] curl and variable parameters in hyperlink

2010-11-23 Thread admin
Depending on how the website is setup you can curl or soap parameters. http://www.php.net/manual/en/book.curl.php http://www.php.net/manual/en/book.soap.php Richard L. Buskirk -Original Message- From: Bob Keightley [mailto:bob.keight...@virgin.net] Sent: Tuesday, November 23, 2010

RE: [PHP] curl and variable parameters in hyperlink

2010-11-23 Thread Bob Keightley
I already have a curl script that gets the web page, but it doesn't pass the parameters Being new to PHP I haven't the first idea how to modify it so that it does. Script is as follows: $url = http://www.xx.com/query.asp?param1=val1param2=val2;; foreach ($_POST as $key=$post) {