我使用PHP,jQuery和mySQL來建立一個管理網站到我的網頁。 在此管理部分的一部分中,我使用<textarea>
元素來編寫多行。 我是西班牙人,我用áéíóú和ñ字母。jquery查找和替換html代碼的口音
我正在尋找任何腳本取代á到& aacute;
此外,我仍然有問題發送<textarea>
內容到MySQL。
<form action="this_file.php" method="POST">
<textarea class="inputcat" type="text" cols="40" rows="5" name="content"></textarea>
<input type="submit" value="upload text" name="submit">
</form>
<?php
//allow sessions to be passed so we can see if the user is logged in
session_start();
//connect to the database so we can check, edit, or insert data to our users table
$con = mysql_connect('localhost', 'user', 'pass') or die(mysql_error());
$db = mysql_select_db('dbname', $con) or die(mysql_error());
if(isset($_POST['submit'])){
//insert the row into the database
$contenido = $_POST['content'];
$SQL = "INSERT INTO table1 (`ct`) VALUE('" .$contenido. "')";//edited sytanx
$result = mysql_query($SQL) or die(mysql_error());
}
?>
的錯誤是:
Unknown column 'ìmg' in 'field list'
fixed error.
最後一件事就是更換AEIOU和正信當用戶請求的MySQL讀取從表中的內容。 AEIOU在這個表,我想在實時更換,當用戶請求的內容
是UTF-8字符集的數據庫? – coppettim 2012-02-13 17:14:32
是的。 utf-8.general.ci – 2012-02-13 17:19:54