|
|
|
สอบถามเกี่ยวกับการ insert ข้อมูลในหน้าเว็บแล้ว ขึ้นแบบนี้ |
|
|
|
|
|
|
|
*รบกวนผู้รู้มาตอบทีนะคะ
หัดเขียนโปรแกรมค่ะ
ไม่ทราบว่าต้องแก้โค้ด บรรทัดไหน
Code (PHP)
<?php
session_start();
require_once "connect.php";
if (isset($_POST['submit'])) {
$post_title = $_POST['title'];
$post_date = date('y-m-d');
$post_author = $_POST['author'];
$post_keywords = $_POST['keywords'];
$post_content = $_POST['content'];
$post_image = $_FILES['image']['name'];
$image_tmp = $_FILES['image']['tmp_name'];
move_uploaded_file($image_tmp,"/basic/admin/img/$post_image");
$insert_query = "INSERT INTO posts(post_title, post_date, post_author, post_image, post_keyword, post_content)
VALUES('$post_title', '$post_date', '$post_author', '$post_image', '$post_keywords', '$post_content')";
if (mysqli_query($conn,$insert_query)) {
echo "<script>alert('Post published successfully');</script>";
} else {
echo "<script>alert('Something wrong!');</script>";
}
}
?>
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>View Post Page</title>
<link rel="stylesheet" href="css/adminstyle.css">
</head>
<body>
<header>
<div class="container">
<h1>Welcome to Admin Page Miss</h1>
</div>
</header>
<section class="content">
<div class="content_grid">
<div class="sidebar">
<h1>Welcome : </h1>
<h3><a href="/index.php">Home</a></h3>
<h3><a href="view_posts.php">View Posts</a></h3>
<h3><a href="insert_post.php">Insert Post</a></h3>
<h3><a href="logout.php">Logout</a></h3>
</div>
<div class="showinfo" >
<h1>View All Post</h1>
<form action="insert_post.php" method="post" enctype="multipart/form-data">
<table width="100%" align="center" border="1">
<tr>
<td align="center" colspan="6"><h1>Insert New Post</h1></td>
</tr>
<tr>
<td>Post Title</td>
<td><input type="text" name="title" size="50"></td>
</tr>
<tr>
<td>Post Author</td>
<td><input type="text" name="author" size="50"></td>
</tr>
<tr>
<td>Post Keywords</td>
<td><input type="text" name="keywords" size="50"></td>
</tr>
<tr>
<td>Post Image</td>
<td><input type="file" name="image" size="50"</td>
</tr>
<tr>
<td>Post Content</td>
<td><textarea name="content" cols="50" rows="15"></textarea></td>
</tr>
<tr>
<td align="center" colspan="6"><input type="submit" name="submit" value="Publish Now"></td>
</tr>
</table>
</form>
<img width="640" height="360" src="img/admin.jpg" alt="">
</div>
</div>
</section>
</body>
</html>
Tag : PHP, MySQL, HTML, HTML5, XAMPP
|
ประวัติการแก้ไข 2019-08-08 15:29:11 2019-08-08 15:32:40 2019-08-08 16:24:15
|
|
|
|
|
Date :
2019-08-08 15:24:43 |
By :
2379645052123537 |
View :
602 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
file ใหญ่ไปครับ
|
|
|
|
|
Date :
2019-08-08 15:53:23 |
By :
mongkon.k |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
ini_set('post_max_size', '2000M');
ini_set('upload_max_filesize', '40M'); // php ini ถูกเซทไว้ที่ 8M ขนาดมาตรฐาน
ปล. ไว้ต้นไฟล์
|
ประวัติการแก้ไข 2019-08-08 17:18:43
|
|
|
|
Date :
2019-08-08 17:15:10 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|