With form ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<?
/* CREATE TABLE `tbl_hindi` (
`data` varchar(1000) character set utf8 collate utf8_bin default NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
INSERT INTO `tbl_hindi` VALUES ('कंप्यूटर'); */
mysql_connect('localhost','root','');
mysql_select_db('test');
mysql_query('SET character_set_results=utf8');
mysql_query('SET names=utf8');
mysql_query('SET character_set_client=utf8');
mysql_query('SET character_set_connection=utf8');
mysql_query('SET character_set_results=utf8');
mysql_query('SET collation_connection=utf8_general_ci');
if(isset($_POST['save']))
{
$sql = "insert into tbl_hindi values ('".$_POST['data']."')";
mysql_query($sql);
}
$sql = "select * from tbl_hindi";
$res = mysql_query($sql);
?>
<form method="post">
<table width="900%" border="0">
<tr>
<td>Add New : <input type="text" name="data" size="20" />
<input type="submit" name="save" value="Save" /></td>
</tr>
<tr>
<td>-----------------------------</td>
</tr>
<tr>
<td><strong>Hindi Data</strong></td>
</tr>
<? while($sar = mysql_fetch_assoc($res)) { ?>
<tr>
<td><?=$sar['data'];?></td>
</tr>
<? } ?>
</table>
</form>
</body>
</html>