0
我動態檢索用戶名的記錄,並在打印表格,現在我想所有這些記錄打印與桌子一樣,不同領域的另一個表,打印動態表記錄到另一個表
table users:
1.
2.
3.
4.
5.
6.
我得到的所有記錄動態與提交按鈕表,
<?php
$username=$_POST['u_name'];
echo $username;
$link = mysql_connect("localhost","root","") or die("Could not connect now");
mysql_select_db("wp_trainee_management") or die("Database not found");
//$image_caption = $_POST['image_caption'];
//$image_username = $_POST['attendance'];
//$u_name = $_POST['u_name'];
$today = date("Y-m-d");
$insert = "insert into attendance (attendance_date,name,presents)
values ('$today','".$username."','yes')";
$insertresults = mysql_query($insert) or die(mysql_error());
?>
- 當我點擊的提交按鈕,我想所有這些名稱插入到另一張桌子。
我該怎麼辦?
這是第二張表嗎?詳細闡述更多plz – 2013-03-05 04:58:56