Forum Moderators: coopster
<body>
<?php
$var = '4" x 10" Box';
?>
<input name="text" type="text" value="<?php echo $var;?>" />
</body>
</html>
So it's not an SS problem, effectively the double quote (") is closing the tag in the form field ie.
<input name="text" type="text" value="4" x 10" Box" />
How would you guys escape this character problem, I can't see any way of doing this?
asp