| Server IP : 27.254.66.5 / Your IP : 216.73.217.39 Web Server : Apache/2 System : Linux cs82.hostneverdie.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64 User : technic2 ( 1951) PHP Version : 7.4.30 Disable Function : apache_child_terminate, apache_setenv, define_syslog_variables, escapeshellarg, escapeshellcmd,exec, fp, fput, highlight_file, ini_alter, ini_restore, inject_code, passthru,phpAds_remoteInfo, phpAds_XmlRpc,phpAds_xmlrpcDecode, phpAds_xmlrpcEncode, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid,posix_setuid, posix_setuid, posix_uname,proc_open,proc_close, proc_get_status, proc_nice, proc_terminate, shell_exec, syslog, system, xmlrpc_entity_decode, show_source,sleep,pcntl_exec,virtual,suexec,dbmopen,dl,symlink,disk_free_space,diskfreespace,leak MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/technic2/domains/technicrayong.ac.th/public_html/old-website/vecsc/jojo/ |
Upload File : |
<?php
Ob_start();
session_start();
//echo $_SESSION["counter"] . '<br>';
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<!-- meta http-equiv="refresh" content="5; url=register1.php" -->
<title>Document</title>
</head>
<body>
<?php
if ($_POST['college_id'] <> '' and $_POST['tacsa_id'] <> '' and $_SESSION["counter"] == 1) {
if (count($_POST['person']) > 0)
{
//echo $_POST['college_id'] . '<br>';
//echo $_POST['tacsa_id'] . '<br>';
// Create connection
require_once('config.php');
// Check connection
if (!$conn) {
die('Connection failed: ' . mysqli_connect_error());
}
mysqli_set_charset($conn,'utf8');
foreach ($_POST['person'] as $row)
{
//echo $row['position_id'] . '<br>';
//echo $row['tname'] . '<br>';
//echo $row['fname'] . '<br>';
//echo $row['lname'] . '<br>';
//echo $row['polo_size'] . '<br><br><br>';
if ($row['position_id'] <> '' and $row['tname'] <> '' and $row['fname'] <> '' and $row['lname'] <> '' and $row['polo_size'] <> '') {
$sql1 = "INSERT INTO tacsa_staff (position_id, tacsa_id, tname, fname, lname, polo_size, amount, college_id, phone, timestamp) VALUES ('" . $row['position_id'] . "', '" . $_POST['tacsa_id'] . "', '" . $row['tname'] . "', '" . $row['fname'] . "', '" . $row['lname'] . "', '" . $row['polo_size'] . "', 250, '" . $_POST['college_id'] . "','" . $_POST['phone'] . "', Now())";
mysqli_query($conn, $sql1);
}
}
mysqli_close($conn);
echo '<center>' . 'บันทึกข้อมูลเรียบร้อยแล้ว' . '<br>';
echo 'กรุณาจำรหัส ' . $_POST['college_id'] . " สำหรับเข้าไปแก้ไขข้อมูล" . '</center>';
$_SESSION["counter"] = 0;
} else {
echo '<center>' . 'ข้อมูลไม่ถูกต้อง กลับไปกรอกอีกครั้ง' . '</center>';
}
}
?>
<br>
<center>
<a href="./register3.php">กลับหน้าหลัก</a>
</center>
</body>
</html>