I want to combine
SELECT * FROM form
with
SELECT REPLACE(/var/WWW/html, "/var", "/vur")
After that I want to put it in a php variable.
I tried this:
$SQL = "SELECT * FROM form" with "SELECT REPLACE (/var/WWW/html, "/var", "/vur")"
I want SELECT everything of my database but I also want to replace text from one column.
It should be like this:
- select everything of the database
- replace text of column no. 12
- put it in a variable
Is this possible? And how?