Help please
See the SQL -> Select * from persons where id = 3456 ok?
I want to provide the table name like this ->
$table_name = $_GET["table"];
Select * from $table_name where id = 3456
how can I do this?
I've tried it all the way using sprintf and concatenations and stuff and I haven't been successful
See the SQL -> Select * from persons where id = 3456 ok?
I want to provide the table name like this ->
$table_name = $_GET["table"];
Select * from $table_name where id = 3456
how can I do this?
I've tried it all the way using sprintf and concatenations and stuff and I haven't been successful