-2
這是我的HTML表單代碼。表格(HTML)到MySQL數據庫通過PHP
<html>
<form action="send_post.php" method="post">
<h3>Category:</h3>
<input type="text" name="post_category">
<h3>Post title:</h3>
<input type="text" name="post_title">
<h3>Post tags (a,b,c...):</h3>
<input type="text" name="post_tags">
<h3>Post (half):</h3>
<input type="text" name="post_half">
<h3>Post (score):</h3>
<input type="text" name="post_score">
<input type="submit">
</form>
</html>
我有數據庫設置,但我如何將這些東西連接到數據庫?
所以,當你點擊提交,數據會進入到數據庫中。
檢查您的數據庫品牌在PHP的世界。 – SayusiAndo