I want to have a calender coding in php for inserting in the date of birth field.
And to make text in text box to move especially for student name field.
<code>
<?php
$con = mysql_connect('localhost','root', ''); if (!$con) { die('Could not connect: ' . mysql_error()); }
mysql_select_db("stu", $con); $result = mysql_query("SELECT * FROM student"); while($row = mysql_fetch_array($result)) { echo $row['deptno'] . " " .$row['sname']
. " " .$row['dob'];
echo "
";
}mysql_close($con); ?></code>