I have a hidden field
<input type="hidden" name="thischeckout" id="thischeckout" value="<?php echo $htmlTable;?>">
in a form that is submitted.
When I use <?php echo $_POST["thischeckout"];?>
on the next page, only a portion of the content is being displayed. I suspect quotes in $htmlTable are messing with the output.
Can I replace quotes with something that won't mess up when I output the POST via the php echo?