Bekijk de onderstaande video om te zien hoe je onze site als een web app op je startscherm installeert.
Opmerking: Deze functie is mogelijk niet beschikbaar in sommige browsers.
Aan de link moet je voldoende hebben.Ja zover was ik dus al, maar hoe doe ik dat precies?
en hoe include ik m pas op het moment dat op de link 'aanpassen' word geklikt?
<?php
include_once("fckeditor/fckeditor.php") ;
?>
<html>
<head>
<title>FCKeditor - Sample</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<form action="sampleposteddata.php" method="post" target="_blank">
<?php
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = '/fckeditor/' ;
$oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ;
$oFCKeditor->Create() ;
?>
<br>
<input type="submit" value="Submit">
</form>
</body>
</html>
<?php
if($_SERVER['REQUEST_METHOD'] == "POST") {
$sValue = stripslashes( $_POST['FCKeditor1'] );
$query = "INSERT INTO tabel (veld) VALUES ('. mysql_real_escape_string($sValue) .')";
// En dan uitvoeren.
} else {
echo 'Form submission not detected';
}
We gebruiken essentiële cookies om deze site te laten werken, en optionele cookies om de ervaring te verbeteren.