[PHP] SOAP PHP 5.2.5 and Outside WSDL's

2008-03-05 Thread Jonathan Pitcher
ion ? 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 (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] WSDL Question

2007-11-29 Thread Jonathan Pitcher
SUBSCRIBER_DEFINED_TRANSFER_NUMBER 6179672983 The question I have is how do I add in the extra: TIMEZONE US/CENTRAL I have tried a couple ways with no success ...

[PHP] OOP Class Interaction

2004-03-31 Thread Jonathan Pitcher
ession variable to access log. Is there a way to access 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
e would 0 == "0"? 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 wis

[PHP] Odd Code Error.

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

[PHP] POST Variable Empty

2003-09-25 Thread Jonathan Pitcher
use 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:

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, A

Re: [PHP] $GLOBAL question

2003-08-18 Thread Jonathan Pitcher
ALS['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: function GlobalCheck() { print "{$GLOBAL['aTest']}"

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

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

2003-08-14 Thread Jonathan Pitcher
up access 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] Break, Exit, Die, Kill, Maime and Stab

2003-07-04 Thread Jonathan Pitcher
--Original Message- > From: Ford, Mike [LSS] [mailto:[EMAIL 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

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 PRO

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" cl

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

2003-07-02 Thread Jonathan Pitcher
tried 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 u

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 _be

[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 Pi

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] preg split question

2003-03-27 Thread Jonathan Pitcher
= $Part2[0]; $NewFileName = join("_", $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 0

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 this

Re: [PHP] Random String Generation

2003-03-12 Thread Jonathan Pitcher
ates a string 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, Mik

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

2003-03-06 Thread Jonathan Pitcher
]); http://www.php.net/manual/en/function.urldecode.php That should enable you 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: h

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

2003-03-05 Thread Jonathan Pitcher
first of the string and then the rest of the loop goes through the else part 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 str

Re: [PHP] mortgage calculator

2003-03-05 Thread Jonathan Pitcher
weeks. 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.

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

2003-03-03 Thread Jonathan Pitcher
ormation 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 a javascript alert box to warn the user. It is all very simple. -

Re: [PHP] Automatic Table Creation

2003-03-03 Thread Jonathan Pitcher
$HTML .= ""; } $HTML .= "": That should do it for you. I typed 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 a

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 Prese

[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] register_globals On

2003-02-17 Thread Jonathan Pitcher
URL hacking. It just 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

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. Here

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; htt

Re: [PHP] Max Limit of post variables

2003-02-06 Thread Jonathan Pitcher
nto 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 hidd

Re: [PHP] PHP or MySQL problem?

2003-02-05 Thread Jonathan Pitcher
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 /ho

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] Include today's date in a SQL statement?

2003-02-05 Thread Jonathan Pitcher
manipulate data based 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 (h