I have a simple html form where I am capturing three variables from the user, first is the registration number second is the date of joining and the last one is password. When I use
$regdno=$_POST["regdno"];
$doj=$_POST["doj"] ;
$password=$_POST["password"];echo $regdno;
echo $doj;
echo $password;
I am getting results printed like
113128321985/12/06myownpass
when I am using Internet explorer, firefox and opera which is correct. But when I am using Google Chrome it is showing like this
11312832 1985/12/06myownpass
Which is showing an extra blank space. Friends Why is this difference and how to rectify it?