This is a discussion on Restoring table with \' in field within the MySQL forums, part of the Database Server Software category; --> Hi, When Administrator does backup it replaces a vlue like Jared's Data to Jared\'s Data. I then find myself ...
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hi, When Administrator does backup it replaces a vlue like Jared's Data to Jared\'s Data. I then find myself manually changing \' to '' in notepad to allow restore to work. Has any body got any details on the escape sequence on windows, like a setting or control panel setting. I am using all the latest versions and fear that is half my problem. |
| |||
| Jared wrote: > Hi, > > When Administrator does backup it replaces a vlue like Jared's Data to > Jared\'s Data. > > I then find myself manually changing \' to '' in notepad to allow restore to > work. > > Has any body got any details on the escape sequence on windows, like a > setting or control panel setting. > > I am using all the latest versions and fear that is half my problem. I make sure there aren't any extra slashes. After posting it, i use Rawpost( $_POST['field'] ) function RawPost( $string ){ if ( get_magic_quotes_gpc() ) $string = stripslashes( $string ); return $string; }; |