HiSSlyneSS Posted February 29, 2004 Share Posted February 29, 2004 Can someone direct me to a post that can cater for the above. I want to be able to view the company name directly from the admin side customer list ie. that is not just First Name Last Name DAte created, but also Company Name, gender etc. Thanks Link to comment Share on other sites More sharing options...
♥yesudo Posted February 29, 2004 Share Posted February 29, 2004 in admin/customers.php: Change: $customers_query_raw = "select c.customers_id, To: $customers_query_raw = "select a.entry_company, c.customers_id, under: <td class="dataTableHeadingContent"><?php echo TABLE_HEADING_FIRSTNAME; ?></td> put: <td class="dataTableHeadingContent"><?php echo 'Company Name'; ?></td> <td class="dataTableHeadingContent"><?php echo 'Gender'; ?></td> and under: <td class="dataTableContent"><?php echo $customers['customers_firstname']; ?></td> put: <td class="dataTableContent"><?php echo $customers['entry_company']; ?></td> <td class="dataTableContent"><?php echo $customers['customers_gender']; ?></td> Your online success is Paramount. Link to comment Share on other sites More sharing options...
HiSSlyneSS Posted March 1, 2004 Author Share Posted March 1, 2004 Thank you so so so much!!!!!! :lol: Link to comment Share on other sites More sharing options...
♥yesudo Posted March 1, 2004 Share Posted March 1, 2004 No probs. Your online success is Paramount. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.