我在http://www.youngcreatitivy.se上有一个帖子文本网站
您在http://www.youngcreativity.se/post.php上看到我有一个 post 方法。在页面底部,我有一个选项来选择您的文本所在的类别。我创建了这段代码,用于将选择框中的值插入我的数据库。这里是:
<?php
//insert category to database
if(isset($_POST['qty'])) {
// Fetch and clean the <select> value.
// The (int) makes sure the value is really a integer.
$qty = (int)$_POST['qty'];
// Create the INSERT query.
$sql = "INSERT INTO `table`(`quantity`)
VALUES ({$qty})";
// Connect to a database and execute the query.
$dbLink = mysql_connect('server', 'username', 'password') or die(mysql_error());
mysql_select_db('database_name', $dbLink) or die(mysql_errno());
$result = mysql_query($sql);
// Check the results and print the appropriate message.
if($result) {
echo "Record successfully inserted!";
}
else {
echo "Record not inserted! (". mysql_error() .")";
}
}
?>
那是PHP代码。
这是html代码:
Qty: <select name="category">
<option value="1">Quote</option>
<option value="1">Poem</option>
<option value="1">Novel</option>
</select>
<br>
<input type="submit">
</select>
我了解代码,但我应该如何在 phpMyAdmin 中创建数据库?如果我在选择类别后单击提交并输入我的文本,它会发布文本并写下我在数据库中选择的类别,我怎样才能做到这一点?请帮我!