in html, a whitespace character is equivalent to what is a " character equivalent to? thanks for your time.
Ask your best friend: http://www.google.co.uk/search?q=html+ascii+codes There's some useful list any webmaster should have bookmarked.
thanks! i have a html form with an input field and i want to populate it using php: e.g.: input name=fieldname type=text maxlength=100 size=20 value="<?php echo stripslashes($_POST['variable']) ?>"> Code (markup): problem is that if $_POST['variable'] is surrounded by quotes (e.g. "hello"), the form input field will be blank. anyone know how to solve this?