|
|
|
อยากให้กดส่ง form insert into พร้อม นับจำนวนครั้ง ต้องทำอย่างไรครับ |
|
|
|
|
|
|
|
**อันนี้คือ DB ที่เตรียมไว้ครับ
**อันนี้คือ ข้อมูลที่ต้องการส่งข้อมูลมายัง form ครับ
ตามหัวข้อเลยครับ ผมอยากให้ทุกครั้งทีกดส่ง form ต้องนับ 1 2 3.. เรียงไปน่ะครับ
อย่างเช่น
-ผมต้องการจะส่ง บทที่ 1(ใน DB คือ Chapter_1) ครั้งแรก Chapter_1_Count จะต้องขึ้น 1
-ผมต้องการส่ง บทที่1 เข้ามาเป็นครั้งที่ 2 ใน Chapter_1_Count จะต้องเป็น 2
จะต้องเพิ่มหรือแก้ไขยังไงหรอครับ รบกวนทุกท่านช่วยผมทีครับ
ขอบคุณอย่างสูงเลยครับ
**อันนี้คือ code form ที่ต้องการให้นับครั้งครับ
Code (PHP)
<?php
session_start();
?>
<meta name="viewport" content="width=device-width, initial-scale=1" http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?
mysql_connect("localhost","root","12345678");
mysql_select_db("progress_report");
mysql_query("SET NAMES UTF8");
if (isset($_POST["Addpro"])){
if($_SERVER["REQUEST_METHOD"]=="POST"){
$fileteacherid=$_POST["txtTeacher_ID"];
$filedesc=$_POST["txtDescription"];
$filepdf=$_POST["Chapter_PDF"];;
$filedate=$_POST["txtDate"];
$filechapter1=$_POST["Chapter_1"];
$filechapter2=$_POST["Chapter_2"];
$filechapter3=$_POST["Chapter_3"];
$filechapter4=$_POST["Chapter_4"];
$filechapter5=$_POST["Chapter_5"];
$fileresearch_id=$_POST["txtResearch_ID"];
}
if ($_FILES["Chapter_PDF"]["name"]=="")
{}
else
{
if($_FILES["Chapter_PDF"]["type"] == "application/pdf")
{
$file = $_FILES['Chapter_PDF']['name'];
$tempfile = date("Y-m-d-h-i-A") ."-".$file;
copy($_FILES["Chapter_PDF"]["tmp_name"],"Chapter_PDF/".$tempfile);
$pnws="Chapter_PDF/".$tempfile;
$strSQL = "INSERT INTO progress(Description,
Chapter_PDF,
Date,
Chapter_1,
Chapter_2,
Chapter_3,
Chapter_4,
Chapter_5,
Progress_Status,
Research_ID,
Teacher_ID) VALUES
('".$filedesc."',
'".$pnws."',
'".$filedate."',
'".$filechapter1."',
'".$filechapter2."',
'".$filechapter3."',
'".$filechapter4."',
'".$filechapter5."',
'รอการยืนยัน',
'".$fileresearch_id."',
'".$fileteacherid."')";
mysql_query("SET NAMES UTF8");
$objQuery = mysql_query($strSQL);
echo "<script language='javascript'>";
echo "alert('ส่งงานวิจัยสำเร็จ !!');";
echo "</script>";
echo "<meta http-equiv='refresh' content='0;url=student_reportreseach'>";
mysql_close();
}else{
echo "<script language='javascript'>";
echo "alert(' กรุณาเลือกไฟล์ .PDF เท่านั้น !!');";
echo "</script>";
echo "<meta http-equiv='refresh' content='0;url=student_send'>";
}
}
}
?>
Tag : PHP, MySQL
|
ประวัติการแก้ไข 2016-12-22 20:20:22 2016-12-22 20:22:47
|
|
|
|
|
Date :
2016-12-22 20:19:15 |
By :
tetechnic |
View :
989 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เพิ่ม
Code (SQL)
update table_name set column_name = column_name+1
ต่อจาก insert into อ่ะครับ
พูดง่ายๆ คุณ insert เสร็จ ก็ update count ตาม แค่นั้นเองครับ
|
|
|
|
|
Date :
2016-12-23 07:54:14 |
By :
limberger |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|