私は仕事のための質問ポータルに取り組んでいます。各質問が「テストに追加」ボタンになるはずだった後、今私は1つの問題を抱えています。このボタンをクリックすると、の内容がcontent-div
MySQLテーブルに保存されます。私は次のコードを使用しています...
メインコード
<div id="content">
This content shut be safe in the MySQL table..
</div>
<script>
$(function(){
$('input.add').on('click',function(){
var div_contents = $("#content").html();
$.post('tomysql.php', { content: div_content });
});
});
</script>
<input type="button" class="add" value="Add to Test" />
tomysql.php
<?php
$con = mysql_connect('127.0.0.1', 'root');
mysql_select_db($teste, $con);
$div = mysql_real_escape_string($_POST['content']);
$sql = "INSERT INTO teste (content) VALUES ('{$div}')";
$query = mysql_query($sql, $con);
if($query) {
// Success!
} else {
// Failure :(
}
?>
しかし、今は機能しません。問題はどこだ?