
Originally Posted by
jwatt10k
So I've been working on this issue of no customer info showing :
First Name: Last Name:
Company Name:
Street Address:
City: State/Province: Post/Zip Code::
Telephone:
Email Address:
...on the /login_as_customer.html page. I am not a php programmer (or I would probably have this figured out by now), but where are these variables getting created:
$email = $_POST['email_addr'];
$pass = $_POST['password'];
$first_name = $_POST['firstname'];
$last_name = $_POST['lastname'];
$c_company = $_POST['company'];
$c_id = $_POST['cid'];
$c_address = $_POST['address'];
$c_city = $_POST['city'];
$c_state = $_POST['cstate'];
$c_zipcode = $_POST['zipcode'];
$c_telephone = $_POST['phone'];
$url = $_POST['s_url'];
There just not getting passed to this page. Am I missing an include file or something? I assumed the variables were defined on the customers.php page, but I can't seem to tweak it to work.