A. Mikkelsen wrote:
Problen with format......
          <TD><INPUT TYPE='Text' NAME='new_loc_domain' SIZE='15'
MAXLENGHT='20'></TD>
          <TD><INPUT TYPE='Text' NAME='new_loc_path' SIZE='25'
MAXLENGHT='255' VALUE='S:\Script\License\'></TD>

But when I ECHO 'new_loc_path' in a function I get

S:\\Script\\License\\

But I want go get

S:\Script\License\

can anyone help ???????


magic_quotes_gpc is on, addslashes() is run on each get, post and cookie variable. To get rid of the escaped slash use stripslashes.


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to