Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Plz Hlp What Is The Variable For The Email Address


xydon1

Recommended Posts

Hi all,

 

I am trying to figure this out but I am having no luck. I need to know what the variable name is for the persons email address when they login. What I am trying to do is open a popup window and pass the users email address to that window. I have tried the following:

 

<? echo $email_address; ?>

 

But no go, can anyone please, please help me

 

Xydon1

Link to comment
Share on other sites

For those idiots who responded without giving any f'ing info Luc's Music!!!! here is what I did to figure it out.

 

$getEmail=mysql_query("select customers_email_address from customers where customers_id='$customer_id'");

while (list($customers_email_address)=mysql_fetch_row($getEmail))

{

?>

<input type="text" name="email" value="<? echo $customers_email_address; ?>">

<?

}

?>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...