Hello,
I am receiving a variable from a program which can be any one of the following:
$client_id_rolling_1
$client_id_rolling_2
$client_id_rolling_3
.
.
.
$client_id_rolling_12
As indicated in the following query, I don't know which variable the program will send as the user is selecting from list. I need convert one of the above to a generic variable named $client_id_rolling so I can search the table for that id.
Any thoughts?
Thanks,
Gary
$query = "SELECT * FROM clients WHERE id = '$client_id_rolling'";