How can I take: $userarray (which is an array and I know holds 3 values) and put them into 3 seperate variables instead of looping through. There seperated by
$userarray
extract($userarray, EXTR_PREFIX_ALL, 'userfield');
This will create $userfield_1, $userfield_2, $userfield_3 variables (note the underscores).