Hello,
Can someone please help me figure this out?
I can make a query like so....
"SELECT * FROM ACCOUNT WHERE ID = '1.3.500'"
but for some reason, this query is not working:
$account = 1.3.500;
"SELECT * FROM ACCOUNT WHERE ID = " . $account;
what am I doing wrong? is there another format to query using a variable?
Thanks!!