Trotzdem bekomme die Eins nit weg.
Kannst mir vieleicht helfen?
Trotzdem bekomme die Eins nit weg.
Kannst mir vieleicht helfen?
Habe schon probiert der befehe wir aber nur in Englisch erklärt.
Es würe einfach nix angezeigt.
Jetzt habe absoulten Pfad angeben dann geht aber irgenwie zeigt jetzt noch eine 1 angezeigt wie bekomme den denn weg?
<?PHP $ausgabe = include_once ("http://www.st-marien-ensdorf.roehlen.name/login/bearbeiten/_samples/php/data.txt");
print "$ausgabe";
?>
hier der Link zur Seite
So bin fertig übrings noch mal Danke für dein Hilfe.
Ich liese die Doku schon zum 5000 mal. Aber ich hätte noch nicht ganz verstande darum hatmri jetzt noch einer Erklärte.
Ausserdem probier das schon die ganze Zeit aus.
Stimmt aber was ist das mit dem Speichern das nicht nur dazu schreibt sonder überschreibt?
Ich habes so gemacht
$sBasePath = $_SERVER['PHP_SELF'] ;
$sBasePath = substr( $sBasePath, 0, strpos( $sBasePath, "_samples" ) ) ;
$filename = "data.txt" ;
$data = file_get_contents($filename);
$oFCKeditor = new FCKeditor('Startseite') ;
$oFCKeditor->BasePath = $sBasePath ;
$oFCKeditor->Value = $data ;
$oFCKeditor->Create() ;
Aber noch ein anders Probleme der zeigt die ja am Ende in eine Tabble an.
Aber leider so: <p> Test </p>
damit in Browser so aussieht: <p> Test </p>
Wie wandel ich das denn wider um?
Das der das so speichert: <p> Test </p>
Und was muss machen das der die Text Datei auch leer. Den im Monent schreibt einfach immer nur dazu?
<?php
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* This page lists the data posted by a form.
*/
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Gespeichert</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="robots" content="noindex, nofollow">
<link href="../sample.css" rel="stylesheet" type="text/css" >
</head>
<body>
Die Datei wird jetzt gespeichter diese kann nicht wider rückgänige gemacht werden.
<hr />
<table border="1" cellspacing="0" id="outputSample">
<colgroup><col width="80"><col></colgroup>
<thead>
<tr>
<th>Title</th>
<th>HTML-Code</th>
</tr>
</thead>
<?php
if ( isset( $_POST ) )
$postArray = &$_POST ; // 4.1.0 or later, use $_POST
else
$postArray = &$HTTP_POST_VARS ; // prior to 4.1.0, use HTTP_POST_VARS
foreach ( $postArray as $sForm => $value )
{
if ( get_magic_quotes_gpc() )
$postedValue = htmlspecialchars( stripslashes( $value ) ) ;
else
$postedValue = htmlspecialchars( $value ) ;
?>
<tr>
<th><?php echo $sForm?></th>
<td><pre><?php echo $postedValue?></pre></td>
</tr>
<?php
}
$filename = 'data.txt';
if (is_writable($filename)) {
if (!$handle = fopen($filename, "a")) {
print "Kann die Datei $filename nicht öffnen";
exit;
}
if (!fwrite($handle, $postedValue)) {
print "Kann in die Datei $filename nicht schreiben";
exit;
}
print "Fertig, die Datei $filename wurde gespeichert.";
fclose($handle);
} else {
print "Die Datei $filename ist nicht schreibbar";
}
?>
</table>
<div>
<form action="../../../index.php" method="get" target="_self">
<input type="submit" value="Zurück zum Start">
</form>
<form action="../../../logout.php" method="get" target="_self">
<input type="submit" value="Ausloggen">
</form>
</div>
</body>
</html>
Alles anzeigen
Das im dem Speichern habe schon selbst geschafft.
Viel Danke für deine Hilfe aber kannst mir noch einmal helfen?
Zurest kommt ja das Eingabefeld mit folgende Code die habe auch schon bichen angepasst:
Aber was muss machen damit auch die datei reingeladen wird?
<?php
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* Sample page.
*/
include("fckeditor.php") ;
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>FCKeditor - Sample</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="robots" content="noindex, nofollow">
<link href="sample.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>FCKeditor - PHP - Sample 1</h1>
This sample displays a normal HTML form with an FCKeditor with full features
enabled.
<hr>
<form action="sampleposteddata.php" method="post" target="_blank">
<?php
// Automatically calculates the editor base path based on the _samples directory.
// This is usefull only for these samples. A real application should use something like this:
// $oFCKeditor->BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
$sBasePath = $_SERVER['PHP_SELF'] ;
$sBasePath = substr( $sBasePath, 0, strpos( $sBasePath, "_samples" ) ) ;
<?php
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* Sample page.
*/
include("fckeditor.php") ;
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>FCKeditor - Sample</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="robots" content="noindex, nofollow">
<link href="sample.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>FCKeditor - PHP - Sample 1</h1>
This sample displays a normal HTML form with an FCKeditor with full features
enabled.
<hr>
<form action="sampleposteddata.php" method="post" target="_blank">
<?php
// Automatically calculates the editor base path based on the _samples directory.
// This is usefull only for these samples. A real application should use something like this:
// $oFCKeditor->BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
$sBasePath = $_SERVER['PHP_SELF'] ;
$sBasePath = substr( $sBasePath, 0, strpos( $sBasePath, "_samples" ) ) ;
$filename = "data.txt";
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = $sBasePath ;
$oFCKeditor->Value = $filename ;
$oFCKeditor->Create() ;
?>
<br>
<input type="submit" value="Speichern">
</form>
</body>
</html>
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = $sBasePath ;
$oFCKeditor->Value = $filename ;
$oFCKeditor->Create() ;
?>
<br>
<input type="submit" value="Speichern">
</form>
</body>
</html>
Alles anzeigen
Und dann Folgende Datei die im Monent noch zum Anzeigen ist:
<?php
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* This page lists the data posted by a form.
*/
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>FCKeditor - Samples - Posted Data</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="robots" content="noindex, nofollow">
<link href="sample.css" rel="stylesheet" type="text/css" >
</head>
<body>
<h1>FCKeditor - Samples - Posted Data</h1>
This page lists all data posted by the form.
<hr>
<table border="1" cellspacing="0" id="outputSample">
<colgroup><col width="80"><col></colgroup>
<thead>
<tr>
<th>Field Name</th>
<th>Value</th>
</tr>
</thead>
<?php
if ( isset( $_POST ) )
$postArray = &$_POST ; // 4.1.0 or later, use $_POST
else
$postArray = &$HTTP_POST_VARS ; // prior to 4.1.0, use HTTP_POST_VARS
foreach ( $postArray as $sForm => $value )
{
if ( get_magic_quotes_gpc() )
$postedValue = htmlspecialchars( stripslashes( $value ) ) ;
else
$postedValue = htmlspecialchars( $value ) ;
?>
<tr>
<th><?php echo $sForm?></th>
<td><pre><?php echo $postedValue?></pre></td>
</tr>
<?php
}
?>
</table>
</body>
</html>
Alles anzeigen
Was muss da den ändern das die Sachen nicht angezeigt werden sonder gespeichert?
Kann man das auch in einer html Datei speichern?
Hat sich erliedigt aber wie kann ich jetzt meinen Webseite einbauen?
Denn bis jetzt sehe ja nur die Bespiele.
Nö habe gemerkt das das nicht so schwer ist aber wo muss das hochladen ich habe ja nur Webspace für die Ver Webseite?
Weil da steht man muss das im Root verzeichnis hochladen.
Funktionert das dann nicht?
Gibst auch Handbuch von FCKeditorin in Deutsch?
Also ich habe es gegooglet aber habe nix gefunden.
Ich habe mir jetzt mal FcKeditor gehollt.
Aber irgenwie komme mit dem nit ganz klar kannst mir vieleicht ein bichen erklären?
Z.B Wie wüge ich mein Seite dort ein?
Danke für die Link
Kannst mir das vieleicht auch schon in ein Sricte zeigen weil alleine bekomme doch nit hin.
Und wie sieht das um geschrieben aus?
Mein Server hat PHP 4.4.9.
Kannst mir auch bitte ein Bespiel das zu machen?
Also ich bin gerade dabei PHP zulerne und deshalb ist eine Teil nicht selber geschrieben.
Ich hätte da noch ein Frage zu Srcite von bandit600
An der Stelle zeigt er folgend Fehler an:
file_put_contents($filename, stripslashes($_POST['text']));
Fatal error: Call to undefined function: file_put_contents() in /homepages/6/d246673255/htdocs/kirche/login/bearbeiten.php on line 18
Was ist den da falsch?
Also genauer Gesagt schreibt das hier
Parse error: syntax error, unexpected T_ELSE in /homepages/6/d246673255/htdocs/kirche/login/bearbeiten.php on line 17
Wie merkst ich bin nit der Beste in PHP.
Ein der Brower sagt Fehler on line 17
das ist hier
else $filename = "data.txt";
Kannst mir da helfen.
Was habe denn hier noch falsch gemacht?
<?
session_start();
include 'sessionhelpers.inc.php';
if (!logged_in())
echo 'Sie nicht eingeloggt.';
echo '<a href="login.php">Start</a>';
else $filename = "data.txt";
if (isset($_POST['text']))
{
file_put_contents($filename, stripslashes($_POST['text']));
}
$data = file_get_contents($filename);
echo "<form action='" . $_SERVER['SCRIPT_NAME'] . "' method='post'>
<textarea name='text' cols='150%' rows='25%'>$data</textarea>
<input type='submit' name='submit' value='Speichern'>
</form>";
echo '<a href="index.php">Start</a><p /><a href="logout.php">Ausloggen</a>';
?>
Alles anzeigen