McWeb
Kızıltaş Madencisi
- Mesajlar
- 467
- En iyi cevaplar
- 0
- Beğeniler
- 120
- Puanları
- 690
Basit bir admin paneli yapmaya çalışıyorum . CKEditor ile sunucu haberleri sayfası gibi bir şey yapmaya çalışıyorum ama yazıyı yansıtmayı beceremedim.
Bu kodu internette buldum . CKEditor de yazdığım yazıyı index.php dosyasına nasıl yansıtabilirim ?
PHP:
<!DOCTYPE html>
<html>
<head>
<title>CKEditor </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="ckeditor/ckeditor.js"></script>
</head>
<body>
<form>
<textarea name="haber1" id="editor1" rows="10" cols="80">
</textarea>
</form>
<script>
CKEDITOR.replace( "haber1" );
</script>
</body>
</html>