Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<form action="ausgabe.php" method="post">
<input type="text" name="titel" />
<input type="text" name="image" />
<input type="text" name="links" />
</form>
<?php
//BBCode ausgeben
echo '[titel]'.$_POST['titel'].'[/titel] [image]'.$_POST['image'].'[/image]'; //und so weiter
//... und das Feld mit den links dann einzelnd nochmal:
echo $_POST['links'];
?>
<form action="ausgabe.php" method="post">
<p>Titel: <input type="text" name="titel" /></p>
<p>Image: <input type="text" name="image" /></p>
<p>Beschreibung: <textarea name="beschreibung" cols="40" rows="5"></textarea></p>
<p>Links: <textarea name="links" cols="40" rows="5"></textarea></p>
<p>Passwort: <input type="text" name="passwort" /></p>
<p><input type="submit" name="bbcode" value="BBcode Convert">,
<input type="submit" name="html" value="HTMLl Convert">,
<input type="submit" name="links" value="Links"></p>
<p><input type="reset" value="Abbrechen"></p>
</form>
<?php
//BBCode ausgeben
echo '[b]'.$_POST['titel'].'[/b]
[image]'.$_POST['image'].'[/image]
echo $_POST['beschreibung']
[url='.$_POST['links'].'[/url]
$_POST['passwort'];
//... und das Feld mit den links dann einzelnd nochmal:
echo $_POST['links'];
?>