No problem, tonight I will up date the readme file for both of these questions.
No problem, tonight I will up date the readme file for both of these questions.
Great, thanks. Is it possible to post the answers here as well for other readers?
Q: Is there any proposed support for this to work with more than 1 admin account.
A: Use the SQL IN Operator for multiple id's.
WHERE admin_id in ('1','2')
Q: Is there any reason why it does not use the template override system?
A: I have not found the template override system to work in the modules folders.
You are welcome. That's what I created it for. But for the company's safety and security I stopped taking phone orders. Now I have a crib sheet to walk the customer through the order process. I Have not lost a customer yet, and the companies chances of being successfully sued for CC Fraud are reduced.
Confirmed, this works for me.
$get_admin_query = "SELECT admin_id, admin_pass
FROM " . TABLE_ADMIN . "
WHERE admin_id in ('1','2') ";
Thanks for getting back to me.
I've just tried this:
$get_admin_query = "SELECT admin_id, admin_pass
FROM " . TABLE_ADMIN . "
WHERE admin_id in ('4','5','7') ";
However, it only let's the first admin on the list login, none of the others.
Any idea why?