Forum Moderators: coopster

Message Too Old, No Replies

Parsing through posts

PHP Dynamic Parsing through a post

         

skinsey

7:33 am on Oct 19, 2009 (gmt 0)

10+ Year Member



Does anyone know how to get the post values without actually writing them out on the page.

Don't wanna do this.
$9BUHZY = $_POST['9BUHZY'];

I'm looking for a script that can parse posts and assign variables. I'm just starting on it now but if someone already know how to do it....

Thanks in advance for any help.

kamperzoid

7:38 am on Oct 19, 2009 (gmt 0)

10+ Year Member



extract($_POST)

all the key's will be the variable

skinsey

7:43 am on Oct 19, 2009 (gmt 0)

10+ Year Member



thank you