Em chào các bác. Các bác giúp em trường hợp này với a.
Khi insert dữ liệu vào MySQL thì dữ liệu không add vào cuối bảng mà nhảy lung tung. Lúc thì vào cuối, lúc thì vào đầu, lúc thì vào giữa.
File Insert.php<?php
require("conn.php");
$td=$_POST['txttieude'];
$nd=$_POST['txtnoidung'];
$sql="INSERT INTO sukientraodoi(TieuDe,NoiDung) value('$td', '$nd')";
$result=mysql_query($sql,$connserver) or die(mysql_error());
if (!$result) die("Không Insert được dữ liệu");
mysql_close($connserver);
echo "Bản tin đã được INSERT thành công";
?>
</p>
File Update.php<body>
<form name="formInput" action="
http://localhost/newsdttc/Insert.php" method="post">
<p> Tiêu đề tin:</p>
<p> <input name="txttieude" type="text" size="133" maxlength="80" /> </p>
<p> Nội dung tin: </p>
<p> <textarea name="txtnoidung" cols="94" rows="8"></textarea> </p>
<p>
<input type="Submit" name="Submit" value="Insert" style="width: 332px" />
<input type="reset" name="reset" value="Reset" style="width: 331px" class="style1" />
</p>
</form>
Thanks!