I want to post an input box that have single quote inside it to a php file.I've used ' but it sends some backslashes:
<input type="hidden" name="legal_natural" value="$store_info['legal_natural']">
result:
$store_info[\'legal_natural\']
Please tell me how can I avoid backslashes when I post ' to a PHP file?