Re: [PHP] Curl with asp pages....

2008-11-27 Thread Andrew Ballard
On Thu, Nov 27, 2008 at 7:12 PM, ioannes <[EMAIL PROTECTED]> wrote: > What are the differences between asp and non-asp pages when you are curling > them? Apart from ,as referred to in php.net, you need to urlencode the post > values... Do you also need to urlencode the variable names? And if the

RE: [PHP] array/iteration issue!!

2008-11-27 Thread bruce
both ways work...!!! this is a really simple/quick issue to populate some test db tbls.. i've only played with multi php arrays (sp??) in passing... and my days of being a serious eng/software guy are long over!! although.. with this economy! thanks -Original Message- From: Robert Cu

Re: [PHP] array/iteration issue!!

2008-11-27 Thread Robert Cummings
On Thu, 2008-11-27 at 22:22 -0600, Micah Gersten wrote: > > This is actually a much smaller data structure. > > $colleges = array > ( > 'Blah Blah University' => > array > ( > 'physics' => array > ( > 'sss', >

RE: [PHP] array/iteration issue!!

2008-11-27 Thread bruce
much props guys!!! thanks!! -Original Message- From: Micah Gersten [mailto:[EMAIL PROTECTED] Sent: Thursday, November 27, 2008 8:23 PM To: Robert Cummings Cc: bruce; 'PHP General list' Subject: Re: [PHP] array/iteration issue!! Robert Cummings wrote: > On Thu, 2008-11-27 at 19:36 -0800

Re: [PHP] array/iteration issue!!

2008-11-27 Thread Micah Gersten
Robert Cummings wrote: > On Thu, 2008-11-27 at 19:36 -0800, bruce wrote: > >> hey robert!! >> >> thanks. and yeah, you're right, it's not the best.. so tell me, given that >> i'm ripping through this on the fly, and i can have the structure in any way >> i choose. this is just to simulate/popula

Re: [PHP] [php] question about ob_end_flush

2008-11-27 Thread Robert Cummings
On Fri, 2008-11-28 at 12:01 +0800, jason liang wrote: > Hi all > > I am comfused about the function ob_end_flush.In the manual:This function > will send the contents of the topmost output buffer (if any) and turn this > output buffer off. > > i have made such tests. > > ob_start(); > ec

RE: [PHP] array/iteration issue!!

2008-11-27 Thread Robert Cummings
On Thu, 2008-11-27 at 19:36 -0800, bruce wrote: > hey robert!! > > thanks. and yeah, you're right, it's not the best.. so tell me, given that > i'm ripping through this on the fly, and i can have the structure in any way > i choose. this is just to simulate/populate some test tbls.. what's a bette

[PHP] [php] question about ob_end_flush

2008-11-27 Thread jason liang
Hi all I am comfused about the function ob_end_flush.In the manual:This function will send the contents of the topmost output buffer (if any) and turn this output buffer off. i have made such tests. this works alright.the script output "hello world!". this script output nothing.i don't know w

RE: [PHP] array/iteration issue!!

2008-11-27 Thread bruce
hey robert!! thanks. and yeah, you're right, it's not the best.. so tell me, given that i'm ripping through this on the fly, and i can have the structure in any way i choose. this is just to simulate/populate some test tbls.. what's a better way to create an array structure to have a collegename,

RE: [PHP] array/iteration issue!!

2008-11-27 Thread Robert Cummings
On Thu, 2008-11-27 at 18:55 -0800, bruce wrote: > hey robert.. > > ok.. so if i changed the array to have a dept1, and a dept2 > > $a=array("college"=> "foo", >"dept1"=>array("dept"=> "physics", > "class"=>array("class1"=>"sss","class2"=>"sffgg") > ), > "dept2"=>array("dept"

RE: [PHP] array/iteration issue!!

2008-11-27 Thread bruce
hey robert.. ok.. so if i changed the array to have a dept1, and a dept2 $a=array("college"=> "foo", "dept1"=>array("dept"=> "physics", "class"=>array("class1"=>"sss","class2"=>"sffgg") ), "dept2"=>array("dept"=> "english", "class"=>array("class1"=>"sss","class2"=>"sffg

Re: [PHP] array/iteration issue!!

2008-11-27 Thread Robert Cummings
On Thu, 2008-11-27 at 17:31 -0800, bruce wrote: > hi. > > i have the following test multidiminsional array. i'm trying to figure out > how to iterate through the array, to produce something like > > foo, physics, sss > foo, physics, sffgg > foo, english, sss > foo, english, sffgg > > can't quite

[PHP] jason liang wants to chat

2008-11-27 Thread jason liang
--- jason liang wants to stay in better touch using some of Google's coolest new products. If you already have Gmail or Google Talk, visit: http://mail.google.com/mail/b-e7afe1e911-a3e11970e1-2c33d93559613f2e You'll need to click

[PHP] array/iteration issue!!

2008-11-27 Thread bruce
hi. i have the following test multidiminsional array. i'm trying to figure out how to iterate through the array, to produce something like foo, physics, sss foo, physics, sffgg foo, english, sss foo, english, sffgg can't quite seem to get it right!! thoughts/comments... etc... thanks

[PHP] About Time Zones

2008-11-27 Thread Franz
Hi, I do not know if I am at the right place... Ref. : http://fr3.php.net/manual/fr/timezones.america.php Well I was wondering what is the different between : - America/Argentina/Buenos_Aires and - America/Buenos_Aires Thank you -- PHP General Mailing List (http://www.php.net/) To unsubscr

Re: [PHP] Re: Parsing XML

2008-11-27 Thread Ashley Sheridan
On Fri, 2008-11-28 at 01:04 +0100, Maciek Sokolewicz wrote: > Ashley Sheridan wrote: > > On Thu, 2008-11-27 at 22:13 +, Ashley Sheridan wrote: > >> On Thu, 2008-11-27 at 20:56 +, Nathan Rixham wrote: > >>> Ashley Sheridan wrote: > Hi All, > > I've run into a bit of a problem.

[PHP] Curl with asp pages....

2008-11-27 Thread ioannes
What are the differences between asp and non-asp pages when you are curling them? Apart from ,as referred to in php.net, you need to urlencode the post values... Do you also need to urlencode the variable names? And if the submit button on the page has javascript:WebForm_PostBackOptions, is

Re: [PHP] Re: Parsing XML

2008-11-27 Thread Maciek Sokolewicz
Ashley Sheridan wrote: On Thu, 2008-11-27 at 22:13 +, Ashley Sheridan wrote: On Thu, 2008-11-27 at 20:56 +, Nathan Rixham wrote: Ashley Sheridan wrote: Hi All, I've run into a bit of a problem. I need to parse some fairly detailed XML files from a remote website. I'm pulling in the re

Re: [PHP] SNMP Functions

2008-11-27 Thread Chris
Rui Quelhas wrote: Hello guys, i'm running php on Leopard 10.5.5 with native php and snmp builds. I was hoping someone could tell me how can i activate the php snmp in order to use the snmp functions. I've searched everywhere for this but i didn't find anything usefull. Appreciate any kind of ans

Re: [PHP] Re: Parsing XML

2008-11-27 Thread Ashley Sheridan
On Thu, 2008-11-27 at 22:13 +, Ashley Sheridan wrote: > On Thu, 2008-11-27 at 20:56 +, Nathan Rixham wrote: > > Ashley Sheridan wrote: > > > Hi All, > > > > > > I've run into a bit of a problem. I need to parse some fairly detailed > > > XML files from a remote website. I'm pulling in the

[PHP] SNMP Functions

2008-11-27 Thread Rui Quelhas
Hello guys, i'm running php on Leopard 10.5.5 with native php and snmp builds. I was hoping someone could tell me how can i activate the php snmp in order to use the snmp functions. I've searched everywhere for this but i didn't find anything usefull. Appreciate any kind of answer. Regards Rui Quel

Re: [PHP] Happy Turkey Day

2008-11-27 Thread Yeti
Today was a holiday? I looked "Thanksgiving" up and wikipedia said it's some kind of harvest festival. I guess that's why some mentioned turkeys .. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Parsing XML

2008-11-27 Thread Ashley Sheridan
On Thu, 2008-11-27 at 20:56 +, Nathan Rixham wrote: > Ashley Sheridan wrote: > > Hi All, > > > > I've run into a bit of a problem. I need to parse some fairly detailed > > XML files from a remote website. I'm pulling in the remote XML using > > curl, and that bit is working fine. The smaller X

Re: [PHP] Happy Turkey Day

2008-11-27 Thread Robert Cummings
On Thu, 2008-11-27 at 20:34 +, Nathan Rixham wrote: > Robert Cummings wrote: > > On Thu, 2008-11-27 at 12:31 -0500, Daniel P. Brown wrote: > >> On Thu, Nov 27, 2008 at 12:26 PM, Ashley Sheridan > >> <[EMAIL PROTECTED]> wrote: > >>> For anyone who has no idea who Mr Bean is: > >>> > >>> http://i

[PHP] Re: Parsing XML

2008-11-27 Thread Nathan Rixham
Ashley Sheridan wrote: Hi All, I've run into a bit of a problem. I need to parse some fairly detailed XML files from a remote website. I'm pulling in the remote XML using curl, and that bit is working fine. The smaller XML documents were easy to parse with regular expressions, as I only needed

[PHP] Re: Parsing XML

2008-11-27 Thread Nathan Rixham
Ashley Sheridan wrote: Hi All, I've run into a bit of a problem. I need to parse some fairly detailed XML files from a remote website. I'm pulling in the remote XML using curl, and that bit is working fine. The smaller XML documents were easy to parse with regular expressions, as I only needed

[PHP] Parsing XML

2008-11-27 Thread Ashley Sheridan
Hi All, I've run into a bit of a problem. I need to parse some fairly detailed XML files from a remote website. I'm pulling in the remote XML using curl, and that bit is working fine. The smaller XML documents were easy to parse with regular expressions, as I only needed bit of information out of

Re: [PHP] Happy Turkey Day

2008-11-27 Thread Nathan Rixham
Robert Cummings wrote: On Thu, 2008-11-27 at 12:31 -0500, Daniel P. Brown wrote: On Thu, Nov 27, 2008 at 12:26 PM, Ashley Sheridan <[EMAIL PROTECTED]> wrote: For anyone who has no idea who Mr Bean is: http://img.photobucket.com/albums/v125/aricacritter/mr-bean-cooking-turkey.jpg The half-

Re: [PHP] Netbeans 6.5 WAS: phpDesigner 2008?

2008-11-27 Thread Bastien Koert
On Wed, Nov 26, 2008 at 7:34 PM, Daevid Vincent <[EMAIL PROTECTED]> wrote: > On Tue, 2008-11-18 at 10:32 +, Holografix wrote: > > Hi > I tried PHPDesigner some time ago. It's not bad but now I'm using Netbeans > and it's a good editor: http://www.netbeans.org/ (it's free!) > > I watched the

Re: [PHP] Happy Turkey Day

2008-11-27 Thread Richard Heyes
> Happy Turkey Day to all who are working on Thanksgiving. That reminds me of a line from Friends... "Happy needless-turkey-murder day". :-) -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 15th) -- PHP General Mailing List (http://www

Re: [PHP] Happy Turkey Day

2008-11-27 Thread Richard Heyes
> I do voice overs for free... I've ummm got a real sexy voice. If that's the case then you could put that to use and earn yourself a good deal of money... ;-) -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 15th) -- PHP General Mailin

Re: [PHP] Happy Turkey Day

2008-11-27 Thread Robert Cummings
On Thu, 2008-11-27 at 18:01 +, Ashley Sheridan wrote: > On Thu, 2008-11-27 at 12:47 -0500, Robert Cummings wrote: > > On Thu, 2008-11-27 at 17:36 +, Ashley Sheridan wrote: > > > On Thu, 2008-11-27 at 12:31 -0500, Daniel P. Brown wrote: > > > > On Thu, Nov 27, 2008 at 12:26 PM, Ashley Sherid

Re: [PHP] Happy Turkey Day

2008-11-27 Thread Ashley Sheridan
On Thu, 2008-11-27 at 12:47 -0500, Robert Cummings wrote: > On Thu, 2008-11-27 at 17:36 +, Ashley Sheridan wrote: > > On Thu, 2008-11-27 at 12:31 -0500, Daniel P. Brown wrote: > > > On Thu, Nov 27, 2008 at 12:26 PM, Ashley Sheridan > > > <[EMAIL PROTECTED]> wrote: > > > >> > > > > For anyone wh

Re: [PHP] Happy Turkey Day

2008-11-27 Thread Robert Cummings
On Thu, 2008-11-27 at 17:36 +, Ashley Sheridan wrote: > On Thu, 2008-11-27 at 12:31 -0500, Daniel P. Brown wrote: > > On Thu, Nov 27, 2008 at 12:26 PM, Ashley Sheridan > > <[EMAIL PROTECTED]> wrote: > > >> > > > For anyone who has no idea who Mr Bean is: > > > > > > http://img.photobucket.com/a

Re: [PHP] Happy Turkey Day

2008-11-27 Thread Robert Cummings
On Thu, 2008-11-27 at 12:31 -0500, Daniel P. Brown wrote: > On Thu, Nov 27, 2008 at 12:26 PM, Ashley Sheridan > <[EMAIL PROTECTED]> wrote: > >> > > For anyone who has no idea who Mr Bean is: > > > > http://img.photobucket.com/albums/v125/aricacritter/mr-bean-cooking-turkey.jpg > > The half-hou

Re: [PHP] Happy Turkey Day

2008-11-27 Thread Ashley Sheridan
On Thu, 2008-11-27 at 12:31 -0500, Daniel P. Brown wrote: > On Thu, Nov 27, 2008 at 12:26 PM, Ashley Sheridan > <[EMAIL PROTECTED]> wrote: > >> > > For anyone who has no idea who Mr Bean is: > > > > http://img.photobucket.com/albums/v125/aricacritter/mr-bean-cooking-turkey.jpg > > The half-hou

Re: [PHP] Happy Turkey Day

2008-11-27 Thread Daniel P. Brown
On Thu, Nov 27, 2008 at 12:26 PM, Ashley Sheridan <[EMAIL PROTECTED]> wrote: >> > For anyone who has no idea who Mr Bean is: > > http://img.photobucket.com/albums/v125/aricacritter/mr-bean-cooking-turkey.jpg The half-hour blocks they used to do of The Mr. Bean Show were great. Silent comedy i

Re: [PHP] Happy Turkey Day

2008-11-27 Thread Ashley Sheridan
On Thu, 2008-11-27 at 17:24 +, Ashley Sheridan wrote: > On Thu, 2008-11-27 at 19:18 +0200, Sancar Saran wrote: > > On Thursday 27 November 2008 19:07:42 Daniel P. Brown wrote: > > > On Thu, Nov 27, 2008 at 11:08 AM, tedd <[EMAIL PROTECTED]> wrote: > > > > Hi gang: > > > > > > > > Happy Turkey D

Re: [PHP] Happy Turkey Day

2008-11-27 Thread Ashley Sheridan
On Thu, 2008-11-27 at 19:18 +0200, Sancar Saran wrote: > On Thursday 27 November 2008 19:07:42 Daniel P. Brown wrote: > > On Thu, Nov 27, 2008 at 11:08 AM, tedd <[EMAIL PROTECTED]> wrote: > > > Hi gang: > > > > > > Happy Turkey Day to all who are working on Thanksgiving. > > > > Back at you, my

Re: [PHP] Happy Turkey Day

2008-11-27 Thread Sancar Saran
On Thursday 27 November 2008 19:07:42 Daniel P. Brown wrote: > On Thu, Nov 27, 2008 at 11:08 AM, tedd <[EMAIL PROTECTED]> wrote: > > Hi gang: > > > > Happy Turkey Day to all who are working on Thanksgiving. > > Back at you, my friend. > > Some on the list may not even know what Thanksgiving

Re: [PHP] Happy Turkey Day

2008-11-27 Thread Daniel P. Brown
On Thu, Nov 27, 2008 at 11:08 AM, tedd <[EMAIL PROTECTED]> wrote: > Hi gang: > > Happy Turkey Day to all who are working on Thanksgiving. Back at you, my friend. Some on the list may not even know what Thanksgiving is, being an American holiday. I had a client last year comment that she

[PHP] Happy Turkey Day

2008-11-27 Thread tedd
Hi gang: Happy Turkey Day to all who are working on Thanksgiving. Cheers, tedd -- --- http://sperling.com http://ancientstones.com http://earthstones.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php