我想顯示當前有(4)個名稱存儲在我的文本框中的我的tb_app的所有名稱......任何人都可以幫助我使我的代碼工作?我只是編程的初學者。在php中顯示多個文本框中的數據
當前代碼:
<html>
<head>
<title>test</title>
</head>
<body>
<?php
include('include/connect.php');
$sql = "SELECT name FROM tb_app";
while($rows = mysql_fetch_array($sql)){
$name = $rows['name'];
}
?>
Name List: <br />
<input type="text" value="<?php echo $name[0] ?>" /> <br />
<input type="text" value="<?php echo $name[1] ?>" /> <br />
<input type="text" value="<?php echo $name[2] ?>" /> <br />
<input type="text" value="<?php echo $name[3] ?>" /> <br />
</body>
</html>
Thanks dude..thats line messing with my code:D – user3235574