Whenever I hit preview in my SAEF, it’s adds a back slash before any quotation mark or apostrophe… like this \”.
I’m guessing it’s a php issue, but I need php in this template to call the fields like this:
<?php
if (isset($_POST['field_id_5'])) {
$field_id_5 = $_POST['field_id_5'];
}
else {
$field_id_5 = '';
}
if (isset($_POST['field_id_6'])) {
$field_id_6 = $_POST['field_id_6'];
}
else {
$field_id_6 = '';
}
if (isset($_POST['field_id_24'])) {
$field_id_24 = $_POST['field_id_24'];
}
else {
$field_id_24 = '';
}
?>Any ideas what I can do to fix this?
Thanks.