Username:SIlencio
geschrieben am 07.08.2003 um 11:18 Uhr
|
Ciao Q, das sieht so aus (wahrscheinlich ein Graus für jeden PHP'ler) weis nicht ob es mit dem Content-Type zusammen hängt.
Wie gesagt der eingegebene Text soll genau 1:1 abgespeichert werden wie er eingegeben wird mit ""></...ect.
Merci
Silencio
<html>
<head>
<title>Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="style_textlader.css" rel="stylesheet" type="text/css">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<br>
<table width="700" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#003366">
<tr>
<td valign="top"> <table width="100%" border="0" cellspacing="1" cellpadding="6">
<tr bgcolor="#ffffff">
<td bgcolor="#ffffff"> <table width="100%" border="0" cellpadding="3">
<tr>
<td height="1" bgcolor="#EBEBEB"></td>
</tr>
<tr>
<td valign="top">
<?php
$radiobutton;
$eintrag=strip_tags($eintrag);
//$eintrag=nl2br($eintrag);
$fp=fopen($radiobutton.".txt","w");
fputs($fp,"eingabe"."=".$eintrag);
fclose($fp);
//if($type != "image/gif" && $type != "image/pjpeg") {
//$err[] = "nur gif und jpeg Dateien dürfen hochgeladen werden.";
//}
if($size > "150000") {
$err[] = "<span class='fliesstext'>Die Datei welche du hochladen willst, ist zu gross!<br>Die maximale Dateigrosse beträgt 150 KB!</span>";
}
If(empty($err)) {
echo "<span class='fliesstext'>Der Text wurde erfolgreich hochgeladen!</span>";
}
else {
foreach($err as $error)
echo "$error<br>";
}
?>
</td>
</tr>
<tr>
<td height="1" bgcolor="#EBEBEB"></td>
</tr>
<tr>
<td><span class="fliesstext">Wenn Sie noch andere Bilder oder
Texte hochladen wollen klicken Sie <a href="muster.html">hier</a>
oder auf den BACK Button.</span></td>
</tr>
<tr>
<td height="1" bgcolor="#EBEBEB"></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>
|