Re: How to upload form data containing special characters correctly?
Posted by Ac1d^ on 09/04/06 10:18
try that:
- $input_string = 'some text with special characters';
- $input_string = base64_encode($input_string);
- write to database,
- read from database,
- $output_string = base64_decode($output_string);