Hello everyone I have a question, how to join a word + a variabla in a mysql query php.
$Sql_Query = "select * from usuario where user_email = '$email' and user_password = '$password' ";
I want to add to the word user a variable that is left user '$ variable'
So that you can form a single word, for example, user5566 (user word + variable)
and can make the query
select * from usuario5566 where ............
Thanks and regards