Ingin membuat halaman seperti postingan di blog kini menjadi mudah karena sudah banyak plugin text editor yang gratis beredar. Kumpulan Skripsi Gratis mencoba membuat sebuah halaman web Text Editor yang simpel dan mudah dengan menggunakan php dan CkEdit kemudian menyimpannya ke Database mySql.
Berikut ini langkah-langkah untuk membuat halaman text editor dengan php :
- Pastikan anda Menyimpan file yang diperlukan seperti dibawah ini
- pada folder ckeditor berisi ckeditor, jika anda belum memiliki anda dapat mengunduh di sini
- pada folder js berisi file jquery.form.js anda dapat mendowloadnya disini
- Buatlah tabel di database seperti perintah dibawah ini:
create table postingan (id int(3) auto_increment, content text not null, primary key(id));
- buatlah file index.php seperti script dibawah ini
<!DOCTYPE html>
<html>
<head>
<title>Writer</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<script type="text/javascript" src="ckeditor/ckeditor.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" src="js/jquery.form.js"></script>
<style>
.cke_contents {
height: 400px !important;
}
</style>
<script type="text/javascript">
$(document).ready(function() {
CKEDITOR.replace( 'editor',
{
fullPage : false,
uiColor : '#9AB8F3',
toolbar : 'MyToolbar'
});
});
</script>
</head>
<body>
<form action="result.php" method="post">
<textarea class="editor" id="editor" name="editor"></textarea>
<div id="messages"></div>
<input type="submit" value="Simpan" name="save">
</form>
</body>
</html>
- kemudian buat file result.php untuk menyimpan hasil postingan ke database
<?php
$host = 'localhost'; //
$dbUser = 'root'; //
$dbPass = ''; // password mySql
$dbName = 'belajar'; // Nama Database
$dbConn = mysql_connect($host, $dbUser, $dbPass)
or trigger_error(mysql_error(), E_USER_ERROR);
mysql_select_db($dbName, $dbConn);
$sql = "INSERT INTO postingan VALUES(null, '" . mysql_real_escape_string($_POST['editor']) . "')";
$queryResource = mysql_query($sql, $dbConn) or die(mysql_error());
?>
Judul : Membuat Text Editor dan Meyimpannya ke mySql dengan php
Deskripsi : Ingin membuat halaman seperti postingan di blog kini menjadi mudah karena sudah banyak plugin text editor yang gratis beredar. Kumpulan S...