PHP Code:
$input3->setAttribute("value","\$_SERVER['REQUEST_URI']");
I want to write the value in the input without the quotes "", so I can really get the address.
With this code the dom will generate
<input ... value="$SERVER[REQUEST_URI']" ...>
How can I do that????
I dont want...
<input ... value="http://..." ...>
I want
<input ... value=$SERVER[REQUEST_URI'] ...>