Hey,
ich habe ein Formular (FCKEditor - spielt aber keine Rolle, denke ich). Die Auswertung erfolgt auf einer extra Seite. Wie muss ich jetzt vorgehen? Ich will, dass mir der formatierte Text auf sampleposteddata.php per E-Mail gesendet wird, wenn man dort nochmal auf einen Button klickt.
Link: Klick.
sampleposteddata.php
PHP
?php
/*
* FCKeditor - The text editor for Internet - [url]http://www.fckeditor.net[/url]
* 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")
* [url]http://www.gnu.org/licenses/gpl.html[/url]
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* [url]http://www.gnu.org/licenses/lgpl.html[/url]
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* [url]http://www.mozilla.org/MPL/MPL-1.1.html[/url]
*
* == END LICENSE ==
*
* This page lists the data posted by a form.
*/
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//DE">
<html>
<head>
<title>Ihr Text</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>Ihr Text</h1>
Text.
<hr>
<table border="1" cellspacing="0" id="outputSample">
<colgroup><col width="80"><col></colgroup>
<?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>
<td><pre><?php echo $postedValue?></pre></td>
</tr>
<?php
}
?>
</table>
</body>
</html>
Alles anzeigen