RE: [PHP] Accessing HTTP Content

2004-03-29 Thread Quentin Bennett
at SOAP server class that does what I want (except that I am not sending SOAP) Thanks for your time! Quentin Bennett -Original Message- From: Burhan Khalid [mailto:[EMAIL PROTECTED] Sent: Monday, 29 March 2004 10:11 p.m. To: Quentin Bennett; [EMAIL PROTECTED] Subject: Re: [PHP] Accessi

[PHP] Accessing HTTP Content

2004-03-28 Thread Quentin Bennett
TTP message. $some_document can't be sent as a GET/POST variable, as it exceeds the limitations on those. Any advice would be appreciated. Quentin Bennett The information contained in this email is privileged and confidential and intended for the addressee only. If you are not the i

RE: [PHP] Problem with sessions.

2002-12-19 Thread Quentin Bennett
Hi, Is your 'other server' identical (Web Server, PHP Version, register_globals setting)? Quentin -Original Message- From: Mike Hillyer [mailto:[EMAIL PROTECTED]] Sent: Friday, 20 December 2002 12:43 p.m. To: PHP GENERAL LIST Subject: [PHP] Problem with sessions. Hello All; Please for

RE: [PHP] sending AND recieving XML

2002-12-19 Thread Quentin Bennett
Hi, We are doing the exact same thing using a simple HTTP Post - the receiving PHP receives the XML, processes it, and sends back an XML answer. Works great. Hope this helps. Quentin -Original Message- From: K.C.P. van Zijl [mailto:[EMAIL PROTECTED]] Sent: Thursday, 19 December 2002 1

RE: [PHP] Displaying first 20 characters of a comment

2002-12-19 Thread Quentin Bennett
   The information contained in this email is privileged and confidential and intended for the addressee only. If you are not the intended recipient, you are asked to respect that confidentiality and not disclose, copy or make use of its contents. If received in error you are asked to destro

RE: [PHP] MySQL select a field's first X bytes

2002-12-16 Thread Quentin Bennett
What's wrong with select left(myfield, 500) from mytable; ? Quentin -Original Message- From: Micah Bushouse [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 17 December 2002 3:22 p.m. To: [EMAIL PROTECTED] Subject: [PHP] MySQL select a field's first X bytes Is there a way in MySQL to select

RE: [PHP] Array

2002-12-16 Thread Quentin Bennett
Hi, No I don't think that is right. $monthschedule["Jun"] is not what is being looked for, but $monthschedule[something]="Jun"; Try doing a loop to see what is in the array. Example, from PHP Bible, function print_keys_and_values_each($arr) { reset($arr); while ($cell = each($arr)) {

[PHP] XML Enabled not there

2002-12-12 Thread Quentin Bennett
before implementing on it - in fact, I haven't got access to it yet, so, no, I can't try it and see. Thanks in advance Quentin Bennett Transport Systems Division Infinity Solutions web http:\\www.infinitysolutions.co.nz mailto:[EMAIL PROTECTED] Support Calls: mailto:[EMAIL PROTECTED

[PHP] Re: PHP and SOAP

2002-05-03 Thread Quentin Bennett
Hi, Let Manuel be your friend! http://www.phpclasses.org/ Quentin "Udo Giacomozzi" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Probably this question has been asked a couple of times but I could not > find a complete answer to my question... > > I am new

[PHP] HTTP Post to another server

2002-03-01 Thread Quentin Bennett
Hi, I want to turn some form data in to and XML document, and the HTTP Post that data to another server. Is that possible from PHP. As a challenge, I know it is possible in ASP! Thanks In Advance Quentin Bennett mailto:[EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To

[PHP] Re: just wanna know

2002-03-01 Thread Quentin Bennett
Unlike echo, print can accept only one argument Unlike echo, print returns a value, which represents whether the print statement suceeded. Both are language constructs, so () are optional. Using () with echo limits you to one argument. All courtesy PHP 4 Bible. Quentin Bennett "E