xydon1 Posted January 21, 2004 Share Posted January 21, 2004 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 More sharing options...
Guest Posted January 21, 2004 Share Posted January 21, 2004 It all depends on what file you're talking about. Link to comment Share on other sites More sharing options...
xydon1 Posted January 21, 2004 Author Share Posted January 21, 2004 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.