Servus allerseits
Ich wersuche diesen Editor in meine .php einzufügen. In der demo von dem Editor wird es zwar erklärt aber irgendwie bekomme ich es nicht hin.
Code aus der beschreibung
<?php
include("spaw2/spaw.inc.php");
$spaw1 = new SpawEditor("spaw1");
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>SPAW Editor Demo</title>
</head>
<body>
<p>This is not a feature demonstration of SPAW Editor. This script is included
for the only purpose of testing your configuration. If you can see and operate
an instance of SPAW Editor below then your editor is properly configured</p>
<p>For extended feature demonstration visit <a href="http://www.solmetra.com/en/disp.php/en_products/en_spaw/en_spaw_demo">our demo page at solmetra.com</a><p>
<form method="post">
<?php
$spaw1->show();
?>
</form>
</body>
</html>
Alles anzeigen
mein code
<?php
include"spaw2/spaw.inc.php";
$text = new SpawEditor("spaw1");
echo "<form method='post' action='?action=send'>";
$text->show();
echo "<input type='submit' name='senden' value='Text Speichern' class='button'></form>";
if (isset($_POST['senden'])) {
echo $_POST['text'];
}
?>
Alles anzeigen
Bei dieser variante gibt er $text nicht aus. Hat wer eine Idee?
Den Editor gibt es hier
Danke schonmal im vorraus
Gruß Skared