Kan dog ikke få det til at køre: Fatal error: Cannot instantiate non-existent class: fckeditor on line 12
Jeg har lagt mappen FCKeditor med filerne over i min webmappe. Lavet en fil som beskrevet i guiden:
<?php
include("
http://localhost/studioPLUS/FCKeditor/fckeditor.php") ;
?>
<html>
<head>
<title>FCKeditor - Sample</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<form action="savedata.php" method="post">
<?php
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = '
http://localhost/studioPLUS//FCKeditor/';$oFCKeditor->Value = 'Default text in editor';
$oFCKeditor->Create() ;
?>
<br>
<input type="submit" value="Submit">
</form>
</body>
</html>