change some css styles for the comments

This commit is contained in:
Ismail Cadaroski 2017-02-16 19:36:03 +01:00
parent 9014c3bbfa
commit 364e6a4c7d
1 changed files with 22 additions and 7 deletions

View File

@ -1,6 +1,9 @@
<?php
include 'functions.php';
date_default_timezone_set('Europe/Amsterdam');
?>
<!DOCTYPE html>
<html>
<head>
<!-- enable utf-8 encoding for umlauts etc.-->
<meta charset="utf-8">
@ -27,13 +30,25 @@
<!-- The sidebar naviagtion ends here -->
</header>
</div>
<!-- The Picture upload Button begins here -->
<!-- The Post function begins here -->
<div>
<form action="upload.php" method="POST" enctype="multipart/form-data">
<input type="file" name="file">
<button type="submit" name="submit">UPLOAD</</button>
<h2>Neuer Eintrag</h2>
<?php
echo
"<form method='POST' action='".pbinsert($con)."'> <br /> Maximum<br/>
<input type='hidden' name='userId' value='Anonymous'>
<input type='number' name='piecesMax' value='' > <br /> Minimum<br/>
<input type='number' name='piecesMin' value='' > <br />
<input type='hidden' name='date' value='".date('Y-m-d H:i:s')."'>
<br /> Produktbeschreibung<br/>
<textarea rows='6' cols='40' name='text'></textarea><br />
<button type='submit' name='submit'>SUBMIT</button>
</form>";
pbget($con);
?>
</div>
<!-- The Picture upload Button ends here -->
</div>
</body>
</html>