Skip to content
Snippets Groups Projects
start.php 469 B
Newer Older
Eric Laufer's avatar
1.1
Eric Laufer committed
<?php 

head("Startseitenwerbung f&uuml;r bezahlte Startseite");
$text = mysqli_fetch_array(db_query("SELECT text FROM ".$db_prefix."_texte WHERE name = 'startseite' "));
echo '
	<form method="post" action="">
		<textarea name="text" style="width:100%; height:175px;" class="form-control">'.$text['text'].'</textarea><br>
		<center>
			<input type="submit" name="start_bezahlt_save" class="btn btn-default" value="Speichern">
		</center>
	</form>
';
foot();