[請益] 通訊錄新增?
<html>
<head>
<title>新增通訊錄</title>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
</head>
<body>
<div align="center">
<form action="addtx.php" name="txform" method="post">
<table border="1">
<tr>
<td>姓名:</td>
<td><input type="text" name="un"></td>
</tr>
<tr>
<td>手機:</td>
<td><input type="text" name="tel"></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" name="addtxbtn"
value="新增" ></td>
</tr>
</table>
<?php
$con=mysqli_connect("localhost","root","","tongxunlu") or die('連線失敗
'.mysqli_error());
mysqli_select_db($con,"tongxunlu");
//mysql_query("set names gb2312"); //如果頁面字符集設
定為GB2312則需要加上這句
if(!empty($_POST)){
$username=$_POST['un'];
$phone=$_POST['tel'];
$addtx="insert into txinfo(username,phone) values
('$username','$phone')";
mysqli_query($con,$addtx);
}
?>
</form>
</div>
</body>
</html>
不好意思,上次沒排好版,這次排好了,請問各位大大,我新增通訊錄的資料按下新增,
資料庫新增的欄位卻是空白的值,比如說我新增姓名為胖虎,電話123,通訊錄卻顯示空
白或0,這是甚麼原因?
<html>
<head>
<title>顯示通訊錄</title>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
</head>
<body>
<div align="center">
<?php
$con=mysqli_connect('localhost','root','','tongxunlu') or die('連線失敗
'.mysql_error());
mysqli_select_db($con,"tongxunlu");
//mysql_query("set names gb2312");
$showtx="select username,phone from txinfo ";
$result=mysqli_query($con,$showtx);
?>
<table border="1">
<?php
$num_rows=mysqli_num_rows($result);
if($num_rows>0)
{
while($row=mysqli_fetch_array($result,MYSQLI_ASSOC))
{
?>
<tr>
<td>姓名</td>
<td><?php echo $row["username"]?></td>
</tr>
<tr>
<td>手機</td>
<td><?php echo $row["phone"]?></td>
</tr>
<?php }}?>
</table>
<a href="phonebook.php">輸入電話</a>
</div>
</body>
</html>
上面是addtx.php
http://www.blueshop.com.tw/board/FUM20041006152627A9N/BRD20211110204009MKQ.html
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 220.143.36.87 (臺灣)
※ 文章網址: https://www.ptt.cc/bbs/PHP/M.1636809055.A.561.html
※ 編輯: joinbee (220.143.36.87 臺灣), 11/13/2021 21:20:50
→
11/13 21:34,
3年前
, 1F
11/13 21:34, 1F
→
11/13 21:34,
3年前
, 2F
11/13 21:34, 2F
→
11/13 21:34,
3年前
, 3F
11/13 21:34, 3F
→
11/13 21:35,
3年前
, 4F
11/13 21:35, 4F
→
11/14 10:14,
3年前
, 5F
11/14 10:14, 5F
→
11/14 10:14,
3年前
, 6F
11/14 10:14, 6F
→
11/14 10:14,
3年前
, 7F
11/14 10:14, 7F
→
11/14 11:50,
3年前
, 8F
11/14 11:50, 8F
→
11/14 11:51,
3年前
, 9F
11/14 11:51, 9F
→
11/14 16:42,
3年前
, 10F
11/14 16:42, 10F
→
11/14 16:44,
3年前
, 11F
11/14 16:44, 11F
※ 編輯: joinbee (220.143.36.87 臺灣), 11/14/2021 16:48:11
※ 編輯: joinbee (220.143.36.87 臺灣), 11/14/2021 16:48:49
→
11/14 16:50,
3年前
, 12F
11/14 16:50, 12F
→
11/14 16:53,
3年前
, 13F
11/14 16:53, 13F
→
11/14 16:53,
3年前
, 14F
11/14 16:53, 14F
※ 編輯: joinbee (220.143.36.87 臺灣), 11/14/2021 16:54:41
※ 編輯: joinbee (220.143.36.87 臺灣), 11/14/2021 16:55:47
→
11/14 16:56,
3年前
, 15F
11/14 16:56, 15F
→
11/14 16:57,
3年前
, 16F
11/14 16:57, 16F
※ 編輯: joinbee (220.143.36.87 臺灣), 11/14/2021 16:57:50
※ 編輯: joinbee (220.143.36.87 臺灣), 11/14/2021 17:12:07
→
11/14 19:36,
3年前
, 17F
11/14 19:36, 17F
→
11/14 19:37,
3年前
, 18F
11/14 19:37, 18F
PHP 近期熱門文章
PTT數位生活區 即時熱門文章