i have to display a cookie value in textbox
but the value is surrounded with a lot of space on both sides
i am appying trim() but still not fixing
< ? php
uName="";
if(isset($_COOKIE["uName"]))
{ $uName=trim($_COOKIE["uName"]);}
?>
<input type="text" name="uName" value="<?php echo $uName; ?>">