for some reason or another I can seem to get this to work scoured the PHP manuel for hours ...
I looking for function to auto create variables from a HTML form using the name="" ($key) as the new $variable = " value="" ($value)"
what I have so far:
For each input from the form Desired output :
$f_name = 'james';
$l_name = 'williams';
$phone = '5671230943';
etc...
Needed to utilize value later in script
Thanks for taking a look