My form tag has name , phonenumber etc.. all in the same form
<input type="text" name="name" size="32">
<input type="text" maxlength="8" name="phonenumber" size="21">
I even tried to put the variables in sessions & that didn't work
Like
$SESSION['phonenumber'] = $POST['phonenumber'];
I can't see why I dont have access to the sessions to be able to post them to the CSV file.
TO post I've tried
$phonenumber = $_SESSION['phonenumber'];
$savestring = $name . "," . $areacode . "," . $phonenumber. "," .$email . "," . $date ."\n";
I've modified it like
$phonenumber = $_POST['phonenumber'];
Still Not working
I've NEVER has SESSIONS NOT work after trying all these angles!