Hello,
I have a simple ADOdb Select statement:
Execute("SELECT nume_complet_useri FROM dbo.table WHERE field = '" . ($Param) . "'") or DIE($sphinx1conn->ErrorMsg());
The $Param is the value of a textfield.
The problem is when I enter a value like "AAA\BBB.CCC"
If I use <?php echo $HTTP_POST_VARS["textfield"]; ?> I see that actually the passed value is AAA<font color="red">\</font>BBB.CCC
So, the MsSql server is not returning the row ! Can I do something that the passed value to be actually what I type in the textfield ?
Thanx