Re: [PHP] arrays with form data?

2002-02-13 Thread Bas Jobsen


>




Op woensdag 13 februari 2002 23:04, schreef Police Trainee:
> good evening gentlemen. I am attempting (with my oh so
> limited php writing abilities) to write a script that
> will take the second "part" of a form item's data and
> process it separately. To elaborate:
> 
> 
> 
> 
>
> When processing, I want the first part of the value
> (TextHere or OtherText) to be used for one thing and
> the second part (5 or 10) to be used to compute
> something else. How would I write a script to
> "separate" or pull only one of the parts of the value
> out?
>
> help greatly appreciated as i continue my learning
> process of php.
>
> -mark
>
> __
> Do You Yahoo!?
> Send FREE Valentine eCards with Yahoo! Greetings!
> http://greetings.yahoo.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] arrays with form data?

2002-02-13 Thread Rick Emery

list($mytext,$mynbr) = explode(","$FORM_ITEM);

-Original Message-
From: Police Trainee [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 13, 2002 4:05 PM
To: PHP
Subject: [PHP] arrays with form data?


good evening gentlemen. I am attempting (with my oh so
limited php writing abilities) to write a script that
will take the second "part" of a form item's data and
process it separately. To elaborate:





When processing, I want the first part of the value
(TextHere or OtherText) to be used for one thing and
the second part (5 or 10) to be used to compute
something else. How would I write a script to
"separate" or pull only one of the parts of the value
out?

help greatly appreciated as i continue my learning
process of php.

-mark

__
Do You Yahoo!?
Send FREE Valentine eCards with Yahoo! Greetings!
http://greetings.yahoo.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php