Re: [PHP] Re: Seperating a textarea into 3 different variables

2001-09-08 Thread Richard Kurth
Hello Gaylen, I am not sure what worldpay uses as an operating system but this work just perfect. Thanks Saturday, September 08, 2001, 6:09:08 PM, you wrote: Gaylen Fraley> Is this under Windows? If so, it's probably passing \r\n : carriage Gaylen Fraley> return/line feed. Check for both. Ga

[PHP] Re: Seperating a textarea into 3 different variables

2001-09-08 Thread Richard Lynch
Use something like this to find out what character is *REALLY* in the stuff coming from worldpay: for($i = 0; $i < strlen($worldpay_address); $i++){ $char = $worldpay_address[$i]; if (($ord = ord($char)) < 32){ echo "$char[$ord]"; } else{ echo $char; } } Anothe

[PHP] Re: Seperating a textarea into 3 different variables

2001-09-08 Thread Gaylen Fraley
Is this under Windows? If so, it's probably passing \r\n : carriage return/line feed. Check for both. -- Gaylen "Richard Kurth" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I have a problem I am trying to set up a credit card form for worldpay > > And in