[PHP] SOAP PHP 5.2.5 and Outside WSDL's

2008-03-05 Thread Jonathan Pitcher
has it been resolved in the current releases of PHP ? If not does anyone have a simple solution ? I can figure out a way to code the XML myself and send it but honestly was hoping for a simplier solution that didn't envolve writing XML by hand. Jonathan Pitcher -- PHP General Mailing List

[PHP] WSDL Question

2007-11-29 Thread Jonathan Pitcher
:serviceSetting I have tried a couple ways with no success ... Any tips would be greatly appreciated. Jonathan Pitcher -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] OOP Class Interaction

2004-03-31 Thread Jonathan Pitcher
a parent class or a parents parent without doing what I did above ? Thanks in advance, Jonathan Pitcher

Re: [PHP] Odd Code Error.

2004-01-21 Thread Jonathan Pitcher
? I know I can run it through a string to integer function which is probably a good idea anyways. Thanks again for all your responses. Jonathan Pitcher On Jan 21, 2004, at 9:21 AM, Ford, Mike [LSS] wrote: On 21 January 2004 04:01, Luke contributed these pearls of wisdom: ok, i read the section

[PHP] Odd Code Error.

2004-01-20 Thread Jonathan Pitcher
would rather know why this is evaluating incorrectly. ?PHP $EA = 0; if ($EA == NFH) { echo brEA is Equal To NFH see $EAbr; } else { echo brEA is NOT EQUAL to NFH see $EAbr; } ? Thanks in advance. Jonathan Pitcher

[PHP] POST Variable Empty

2003-09-25 Thread Jonathan Pitcher
a smaller file the process works perfectly. Any ideas or suggestions would be greatly appreciated. Jonathan Pitcher ** PHP INFO ** PHP Version 4.3.0 System FreeBSD 4.4-RELEASE FreeBSD 4.4-RELEASE #9: Thu Jan i386 Build Date Jan 10 2003 17:41:54

Re: [PHP] open php from

2003-08-29 Thread Jonathan Pitcher
Alvaro, To redirect use the header function (http://www.php.net/header) The call would be something like: header(Location: anotherpage.php); remember that to use this command nothing can have been printed to the browser before hand. HTH Jonathan On Friday, August 29, 2003, at 11:13 AM,

Re: [PHP] $GLOBAL question

2003-08-18 Thread Jonathan Pitcher
() { print {$GLOBALS['aTest']}; } GlobalCheck(); ? HTH Jonathan Pitcher On Monday, August 18, 2003, at 12:40 PM, Robin Kopetzky wrote: Good Morning!! I'm trying to print $GLOBALs this way and it doesn't work: ?php $aTest = This is a test; function GlobalCheck

[PHP] Application Dev -- Separating code for speed.

2003-08-14 Thread Jonathan Pitcher
on large sites. Any input you could give me would be greatly appreciated. Thanks in advance, Jonathan Pitcher -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] string concatenation from array

2003-08-14 Thread Jonathan Pitcher
Micah, The sign in PHP (to the best of my knowledge) does not concatenate. Use a . instead. See below. $wresult = ; foreach ($search_string as $word_result){ $wresult .= $word_result; } That should work for you. Jonathan Pitcher On Tuesday, August 12, 2003, at 02:58 PM, Micah

RE: [PHP] Break, Exit, Die, Kill, Maime and Stab

2003-07-04 Thread Jonathan Pitcher
PROTECTED] Sent: Thursday, July 03, 2003 5:10 AM To: 'Jim Lucas'; Jonathan Pitcher; [EMAIL PROTECTED] Subject: RE: [PHP] Break, Exit, Die, Kill, Maime and Stab -Original Message- From: Jim Lucas [mailto:[EMAIL PROTECTED] Sent: 02 July 2003 22:47 Technically you are not outside

[PHP] Break, Exit, Die, Kill, Maime and Stab

2003-07-02 Thread Jonathan Pitcher
break, exit and die with no luck. Even tried break 1; and break 2; to break out of levels but that didn't seem to work either. Is there a solution or should I continue to do what I have done. Thanks in advance, Jonathan Pitcher -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] Break, Exit, Die, Kill, Maime and Stab

2003-07-02 Thread Jonathan Pitcher
I have thought about that but most of the information is not switchable. I use the code mostly for checking if a list of variables have been setup correctly. Thanks though. Jonathan On Wednesday, July 2, 2003, at 04:23 PM, Jeff Harris wrote: On Jul 2, 2003, Jonathan Pitcher claimed

Re: [PHP] Break, Exit, Die, Kill, Maime and Stab

2003-07-02 Thread Jonathan Pitcher
return will work outside of functions ?? That I didn't know. Thanks, Jonathan On Wednesday, July 2, 2003, at 04:28 PM, Jim Lucas wrote: return; will do the trick Jim Lucas - Original Message - From: Jonathan Pitcher [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, July 02

[PHP] Usort

2003-04-03 Thread Jonathan Pitcher
This email is long I apologize for that. It is my code and then what it returns and what I am wanting it to return. I don't think I understand how USORT works or even if I am using the right function for what I am looking for. Thanks in advance for your help Jonathan Pitcher

Re: [PHP] Usort

2003-04-03 Thread Jonathan Pitcher
Thank you. I now have it working and it makes sense. Jonathan On Thursday, April 3, 2003, at 04:26 PM, Ernest E Vogelsinger wrote: [snip] The compare callback is expected to return anything 0 if the first value is less than the second (should sort

Re: [PHP] preg split question

2003-03-27 Thread Jonathan Pitcher
(_, $Wanted_File_Pieces); It may be possible to do it with preg_split, I am not as familiar with that function as I would like to be. Hope this helped show you another way to do what you where wanting to do. Jonathan Pitcher On Thursday, March 27, 2003, at 08:39 AM, Torsten Rosenberger wrote: Hello i'd

Re: [PHP] last questions

2003-03-27 Thread Jonathan Pitcher
Haseeb, Here is a great tutorial regular expression. http://www.phpbuilder.com/columns/dario19990616.php3 Jonathan Pitcher On Thursday, March 27, 2003, at 10:02 PM, Haseeb Iqbal wrote: thanx to all those who replied to my previous question. 1 more question.i need help with reqular

Re: [PHP] Random String Generation

2003-03-12 Thread Jonathan Pitcher
that is 5 elements in length. You can tell it to add or subtract numbers by changing the value of NumOfElements or change the elements that are returned by changing the value of ElementArray. I hope this helped. Jonathan Pitcher On Wednesday, March 12, 2003, at 12:49 PM, Mike Walth wrote: Hello

Re: [PHP] Pagination Part 2

2003-03-12 Thread Jonathan Pitcher
You are mixing and matching your If statements. if () else AND if () { } else { } Be consistent. It looks like if you close the { tags your code should work ok.} Hope this helps, Jonathan Pitcher On Wednesday, March 12, 2003, at 01:11 PM, conbud wrote: Hi, Ive been trying to get

Re: [PHP] How to redirect form results to different server?

2003-03-06 Thread Jonathan Pitcher
to do what you where wanting to do. Jonathan Pitcher On Thursday, March 6, 2003, at 11:30 AM, Jody Cleveland wrote: Hello, I've got a form here: http://www.winnefox.org/ccbc.html Which I have running this: form method=get action=http://email.winnefox.org/wals/support/formmail.php; In that form, I

Re: [PHP] mortgage calculator

2003-03-05 Thread Jonathan Pitcher
. Jonathan Pitcher On Wednesday, March 5, 2003, at 10:49 AM, Karen E. Lubrecht wrote: I'd like to add a mortgage calculator to a client's site. I've been unable to find the formula. In searching php.net, I found a discussion from back in 2000 related to some buggy code. My web search hasn't

Re: [PHP] adding a comma between a list of file names

2003-03-05 Thread Jonathan Pitcher
of the statement adding in the comma for you. Hope this helped. Jonathan Pitcher On Wednesday, March 5, 2003, at 04:36 PM, Richard Kurth wrote: The scrip below will list all the files in a directory and also strip off every thing in the file name after a . so if I have files named 1.txt 2.txt

Re: [PHP] Automatic Table Creation

2003-03-03 Thread Jonathan Pitcher
this code directly into the email so be forwarned about copy and pasting it. Hope this helped. Jonathan Pitcher On Monday, March 3, 2003, at 08:58 AM, Awlad Hussain wrote: I have a mysql table containing about 100 record, alphabetically ordered. How would i display them in browser in a 3

Re: [PHP] Keeping existing data in textarea's

2003-03-03 Thread Jonathan Pitcher
5.0 or older this will work. Now, with PHP you need to pass the information back to the form either through a URL or in session variables. I hope this helps some, Jonathan Pitcher On Monday, March 3, 2003, at 12:43 PM, Mirco Ellis wrote: Hi, I am doing my error checking with php. I use

Re: [PHP] register_globals On

2003-02-17 Thread Jonathan Pitcher
depends on how it is written and how thought out the shopping cart script is. Hope this helped. Jonathan Pitcher On Monday, February 17, 2003, at 07:09 AM, Sam wrote: I'm thinking of running a shopping cart package (osCommerce) that requires register_globals to be enabled. With all

[PHP] IRR Function in PHP

2003-02-17 Thread Jonathan Pitcher
. Has anyone heard of something written in PHP that can handle this type of calculation?? Thanks in advance, Jonathan Pitcher -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] IRR Function in PHP -- MORE Info

2003-02-17 Thread Jonathan Pitcher
I received an Excel Spread sheet with built in calculations for creating our rate sheets that we pass out to our branches and so on. In this rate sheet to calculate our APR the spread sheet calls built in Finance Functions IRR Internal Rate of Return PMT Calculates a Payment PV Calculates

Re: [PHP] sorting multi-dimensional array

2003-02-13 Thread Jonathan Pitcher
Steve, Have you tired Usort ?? http://www.php.net/manual/en/function.usort.php On Thursday, February 13, 2003, at 01:08 PM, Steve Buehler wrote: PHP version 4.2.2 I sure hope that I can get somebody to help me figure this one out. I have a multi-dimensional array that I need to sort.

Re: [PHP] Max Limit of post variables

2003-02-06 Thread Jonathan Pitcher
into a string and then explode them after the post. Hope I helped. Jonathan Pitcher Capitol Federal Savings Webmaster On Thursday, February 6, 2003, at 01:18 PM, Stuart Donald wrote: I am trying to generate an html form with approximately 3000 post variables (1500 input type text and 1500 hidden, I

Re: [PHP] stripping %20 and other characters from query string

2003-02-06 Thread Jonathan Pitcher
Sarah, There are a couple functions that could do this for you. Probably the fastest one for your example would be as follows. $NewString = str_replace('%20', ' ', $value); // Removes the %20 characters $NewString = str_replace '\', '', $NewString); // Removes \ character echo $NewString;

Re: [PHP] Include today's date in a SQL statement?

2003-02-05 Thread Jonathan Pitcher
on the results. Jonathan Pitcher Webmaster Capitol Federal Savings On Wednesday, February 5, 2003, at 09:14 AM, Brian Dunning wrote: What would the SQL be to find a record where: start_date today = end_date Thanks, - Brian -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] Redirecting to PHP

2003-02-05 Thread Jonathan Pitcher
root web directory and put the following line into it. DirectoryIndex index.php This option should work for that directory and any directories inside of that dir. You need apache for this option to work. Jonathan Pitcher Capitol Federal Savings Webmaster On Wednesday, February 5, 2003, at 11

Re: [PHP] PHP or MySQL problem?

2003-02-05 Thread Jonathan Pitcher
in a password. Jonathan Pitcher Capitol Federal Savings Webmaster On Wednesday, February 5, 2003, at 03:55 PM, César Aracena wrote: Hi all, I'm uploading a new web site and when doing some testing, I find this error: Access denied for user: 'httpd@localhost' (Using password: NO) in /home/sites/site33