added comment function
This commit is contained in:
parent
5c514c3342
commit
7eaa6c0b67
13 changed files with 499 additions and 0 deletions
|
@ -66,6 +66,45 @@ include "../internal/mysql.php";
|
|||
<p><img src="/img/URL-kuerzer1.png"></p>
|
||||
<p><strong>Update:</strong> Da das alte Design nicht besonders schön aussah habe ich mich dazu entschlossen ein neues Design zu verwenden, welches jetzt auf <a href="https://getbootstrap.com/">Bootstrap</a> basiert. Das Design ist <a href="https://kurz.ml/design">hier</a> zu finden. Für die Benachrichtigungen unten rechts habe ich das <a href="https://github.com/kamranahmedse/jquery-toast-plugin">jquery-toast-plugin</a> von kamranahmedse verwendet. Desweiteren kann man sich in der neuen Version auch einen Link selber aussuchen. Die Weiterleitung blieb gleich wie vorher, dass heißt die alten links bleiben weiterhin bestehen und werden auch in Zukunft noch funktionieren. Eine weitere Anpassung, welche noch gemacht werden muss ist, dass er files Ordner auf einen anderen (sub)domain ausgelagert werden muss und in der index.php angepasst werden muss.</p><br>
|
||||
<a href="/files/shorter.zip"><button>Download</button></a>
|
||||
<h2>Kommentare:</h2>
|
||||
<?php
|
||||
|
||||
$article = basename($_SERVER["SCRIPT_FILENAME"], '.php');
|
||||
$result = $conn->query("SELECT * FROM comments WHERE article='$article'");
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
$name = $row["name"] . "<br>";
|
||||
$gravatar = get_gravatar($row["email"]);
|
||||
$content = $row["comment"];
|
||||
|
||||
echo(<<<EOF
|
||||
<h3 class="commentTitle">$name</h3>
|
||||
<div class="comment">
|
||||
<img src="$gravatar">
|
||||
<article class="commentArticle">
|
||||
<p class="commentText">$content</p>
|
||||
</article>
|
||||
</div>
|
||||
EOF);
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
<div id="newComment">
|
||||
<form action="/newComment.php" method="post">
|
||||
<label for="name">Name:</label><br>
|
||||
<input type="text" id="name" name="name"><br><br>
|
||||
|
||||
<label for="email">E-Mail: (wird nicht veröffentlicht)</label><br>
|
||||
<input type="text" id="email" name="email"><br><br>
|
||||
|
||||
<label for="comment">Kommentar:</label><br>
|
||||
<textarea name="comment" id="comment"></textarea><br><br>
|
||||
|
||||
<input type="submit" value="Kommentar veröffentlichen"><br>
|
||||
<p>Mit dem klick auf den obigen Button erklären sie sich mit der <a href="/datenschutzerklaerung.html">Datenschutzerklärung</a> einverstanden.</p>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<footer includeHTML="/include/footer.php">
|
||||
</footer>
|
||||
|
|
|
@ -66,7 +66,45 @@ include "../internal/mysql.php";
|
|||
Aktueller build Status: <img src="http://gitlab.jonasled.de/jonasled/url_shorter_docker/badges/master/pipeline.svg"><br>
|
||||
<img src="/img/kurz_ml_light.png">
|
||||
<img src="/img/kurz_ml_ldark.jpg">
|
||||
<h2>Kommentare:</h2>
|
||||
<?php
|
||||
|
||||
$article = basename($_SERVER["SCRIPT_FILENAME"], '.php');
|
||||
$result = $conn->query("SELECT * FROM comments WHERE article='$article'");
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
$name = $row["name"] . "<br>";
|
||||
$gravatar = get_gravatar($row["email"]);
|
||||
$content = $row["comment"];
|
||||
|
||||
echo(<<<EOF
|
||||
<h3 class="commentTitle">$name</h3>
|
||||
<div class="comment">
|
||||
<img src="$gravatar">
|
||||
<article class="commentArticle">
|
||||
<p class="commentText">$content</p>
|
||||
</article>
|
||||
</div>
|
||||
EOF);
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
<div id="newComment">
|
||||
<form action="/newComment.php" method="post">
|
||||
<label for="name">Name:</label><br>
|
||||
<input type="text" id="name" name="name"><br><br>
|
||||
|
||||
<label for="email">E-Mail: (wird nicht veröffentlicht)</label><br>
|
||||
<input type="text" id="email" name="email"><br><br>
|
||||
|
||||
<label for="comment">Kommentar:</label><br>
|
||||
<textarea name="comment" id="comment"></textarea><br><br>
|
||||
|
||||
<input type="submit" value="Kommentar veröffentlichen"><br>
|
||||
<p>Mit dem klick auf den obigen Button erklären sie sich mit der <a href="/datenschutzerklaerung.html">Datenschutzerklärung</a> einverstanden.</p>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<footer includeHTML="/include/footer.php">
|
||||
</footer>
|
||||
|
|
|
@ -70,7 +70,45 @@ include "../internal/mysql.php";
|
|||
<p>Da Google für seine Karten auf eigenen Websites seit dem 16.Juli Geld verlangt habe ich die Karte auf leaflet umgeschrieben, welche die OSM Karten von Mapbox bezieht.</p><br>
|
||||
<a href="/files/blitzortung.zip"><button>Download V1</button></a>
|
||||
<a href="/files/blitzortung_v2.zip"><button>Download V2</button></a>
|
||||
<h2>Kommentare:</h2>
|
||||
<?php
|
||||
|
||||
$article = basename($_SERVER["SCRIPT_FILENAME"], '.php');
|
||||
$result = $conn->query("SELECT * FROM comments WHERE article='$article'");
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
$name = $row["name"] . "<br>";
|
||||
$gravatar = get_gravatar($row["email"]);
|
||||
$content = $row["comment"];
|
||||
|
||||
echo(<<<EOF
|
||||
<h3 class="commentTitle">$name</h3>
|
||||
<div class="comment">
|
||||
<img src="$gravatar">
|
||||
<article class="commentArticle">
|
||||
<p class="commentText">$content</p>
|
||||
</article>
|
||||
</div>
|
||||
EOF);
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
<div id="newComment">
|
||||
<form action="/newComment.php" method="post">
|
||||
<label for="name">Name:</label><br>
|
||||
<input type="text" id="name" name="name"><br><br>
|
||||
|
||||
<label for="email">E-Mail: (wird nicht veröffentlicht)</label><br>
|
||||
<input type="text" id="email" name="email"><br><br>
|
||||
|
||||
<label for="comment">Kommentar:</label><br>
|
||||
<textarea name="comment" id="comment"></textarea><br><br>
|
||||
|
||||
<input type="submit" value="Kommentar veröffentlichen"><br>
|
||||
<p>Mit dem klick auf den obigen Button erklären sie sich mit der <a href="/datenschutzerklaerung.html">Datenschutzerklärung</a> einverstanden.</p>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<footer includeHTML="/include/footer.php">
|
||||
</footer>
|
||||
|
|
|
@ -60,6 +60,45 @@ include "../internal/mysql.php";
|
|||
</header>
|
||||
<div id="content">
|
||||
<p>Da ich auf <a href="https://geocaching.com">Geocaching.com</a> keine Premium Mitgliedschaft besitze, aber meine Eltern schon, mache ich auch manchmal mit denen Geocaches, welche nur für Premium Nutzer gedacht sind. Das loggen dieser Caches ist trotzdem möglich, vorausgesetzt, man weiß wie der Link aufgebaut ist. Daher habe ich ein Script für <a href="https://tampermonkey.net/">Tampermonkey</a> entwickelt, welches einen Button unter die Premium Meldung platziert, welcher einen zum Log weiterleitet. Ein Screenshot ist unten zu sehen. Den Script habe ich auf <a href="https://greasyfork.org">greasyfork.org</a> veröffentlicht, da dies eine sehr bekannte Seite für Scripte ist. Der Link zu meinem Script lautet: <a href="https://greasyfork.org/de/scripts/372017-geocaching-log-premium-for-free">greasyfork.org/de/scripts/372017-geocaching-log-premium-for-free</a></p>
|
||||
<h2>Kommentare:</h2>
|
||||
<?php
|
||||
|
||||
$article = basename($_SERVER["SCRIPT_FILENAME"], '.php');
|
||||
$result = $conn->query("SELECT * FROM comments WHERE article='$article'");
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
$name = $row["name"] . "<br>";
|
||||
$gravatar = get_gravatar($row["email"]);
|
||||
$content = $row["comment"];
|
||||
|
||||
echo(<<<EOF
|
||||
<h3 class="commentTitle">$name</h3>
|
||||
<div class="comment">
|
||||
<img src="$gravatar">
|
||||
<article class="commentArticle">
|
||||
<p class="commentText">$content</p>
|
||||
</article>
|
||||
</div>
|
||||
EOF);
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
<div id="newComment">
|
||||
<form action="/newComment.php" method="post">
|
||||
<label for="name">Name:</label><br>
|
||||
<input type="text" id="name" name="name"><br><br>
|
||||
|
||||
<label for="email">E-Mail: (wird nicht veröffentlicht)</label><br>
|
||||
<input type="text" id="email" name="email"><br><br>
|
||||
|
||||
<label for="comment">Kommentar:</label><br>
|
||||
<textarea name="comment" id="comment"></textarea><br><br>
|
||||
|
||||
<input type="submit" value="Kommentar veröffentlichen"><br>
|
||||
<p>Mit dem klick auf den obigen Button erklären sie sich mit der <a href="/datenschutzerklaerung.html">Datenschutzerklärung</a> einverstanden.</p>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<footer includeHTML="/include/footer.php">
|
||||
</footer>
|
||||
|
|
|
@ -71,7 +71,45 @@ include "../internal/mysql.php";
|
|||
<img src="/img/Insecam.png"><br>
|
||||
<p>Neue Karte mit Leaflet:</p>
|
||||
<img src="/img/insecam_neu.png"><br>
|
||||
<h2>Kommentare:</h2>
|
||||
<?php
|
||||
|
||||
$article = basename($_SERVER["SCRIPT_FILENAME"], '.php');
|
||||
$result = $conn->query("SELECT * FROM comments WHERE article='$article'");
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
$name = $row["name"] . "<br>";
|
||||
$gravatar = get_gravatar($row["email"]);
|
||||
$content = $row["comment"];
|
||||
|
||||
echo(<<<EOF
|
||||
<h3 class="commentTitle">$name</h3>
|
||||
<div class="comment">
|
||||
<img src="$gravatar">
|
||||
<article class="commentArticle">
|
||||
<p class="commentText">$content</p>
|
||||
</article>
|
||||
</div>
|
||||
EOF);
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
<div id="newComment">
|
||||
<form action="/newComment.php" method="post">
|
||||
<label for="name">Name:</label><br>
|
||||
<input type="text" id="name" name="name"><br><br>
|
||||
|
||||
<label for="email">E-Mail: (wird nicht veröffentlicht)</label><br>
|
||||
<input type="text" id="email" name="email"><br><br>
|
||||
|
||||
<label for="comment">Kommentar:</label><br>
|
||||
<textarea name="comment" id="comment"></textarea><br><br>
|
||||
|
||||
<input type="submit" value="Kommentar veröffentlichen"><br>
|
||||
<p>Mit dem klick auf den obigen Button erklären sie sich mit der <a href="/datenschutzerklaerung.html">Datenschutzerklärung</a> einverstanden.</p>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<footer includeHTML="/include/footer.php">
|
||||
</footer>
|
||||
|
|
|
@ -171,6 +171,45 @@ include "../internal/mysql.php";
|
|||
<li>Die LED sollte ausgehen.</li>
|
||||
</ul>
|
||||
<p><del>Den Quellcode findet ihr auf meinem <a href="https://git.jonasled.tk/jonasled/LED-Tisch">git Server</a> in der <a href="https://git.jonasled.tk/jonasled/LED-Tisch/src/branch/alt">alt Branch</a></del></p>
|
||||
<h2>Kommentare:</h2>
|
||||
<?php
|
||||
|
||||
$article = basename($_SERVER["SCRIPT_FILENAME"], '.php');
|
||||
$result = $conn->query("SELECT * FROM comments WHERE article='$article'");
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
$name = $row["name"] . "<br>";
|
||||
$gravatar = get_gravatar($row["email"]);
|
||||
$content = $row["comment"];
|
||||
|
||||
echo(<<<EOF
|
||||
<h3 class="commentTitle">$name</h3>
|
||||
<div class="comment">
|
||||
<img src="$gravatar">
|
||||
<article class="commentArticle">
|
||||
<p class="commentText">$content</p>
|
||||
</article>
|
||||
</div>
|
||||
EOF);
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
<div id="newComment">
|
||||
<form action="/newComment.php" method="post">
|
||||
<label for="name">Name:</label><br>
|
||||
<input type="text" id="name" name="name"><br><br>
|
||||
|
||||
<label for="email">E-Mail: (wird nicht veröffentlicht)</label><br>
|
||||
<input type="text" id="email" name="email"><br><br>
|
||||
|
||||
<label for="comment">Kommentar:</label><br>
|
||||
<textarea name="comment" id="comment"></textarea><br><br>
|
||||
|
||||
<input type="submit" value="Kommentar veröffentlichen"><br>
|
||||
<p>Mit dem klick auf den obigen Button erklären sie sich mit der <a href="/datenschutzerklaerung.html">Datenschutzerklärung</a> einverstanden.</p>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<footer includeHTML="/include/footer.php">
|
||||
</footer>
|
||||
|
|
|
@ -98,6 +98,45 @@ include "../internal/mysql.php";
|
|||
<p><strong>Quellcode:</strong></p>
|
||||
<ul><li><a href="https://gitlab.jonasled.de/jonasled/LED_Tisch">https://gitlab.jonasled.de/jonasled/LED_Tisch</a></li><li><a href="https://gitlab.jonasled.de/jonasled/LED_Tisch_App_Android">https://gitlab.jonasled.de/jonasled/LED_Tisch_App_Android</a></li><li><a href="https://gitlab.jonasled.de/jonasled/LED_Tisch_Rendering">https://gitlab.jonasled.de/jonasled/LED_Tisch_Rendering</a></li></ul><br>
|
||||
<img src="/img/ledTisch2.jpg">
|
||||
<h2>Kommentare:</h2>
|
||||
<?php
|
||||
|
||||
$article = basename($_SERVER["SCRIPT_FILENAME"], '.php');
|
||||
$result = $conn->query("SELECT * FROM comments WHERE article='$article'");
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
$name = $row["name"] . "<br>";
|
||||
$gravatar = get_gravatar($row["email"]);
|
||||
$content = $row["comment"];
|
||||
|
||||
echo(<<<EOF
|
||||
<h3 class="commentTitle">$name</h3>
|
||||
<div class="comment">
|
||||
<img src="$gravatar">
|
||||
<article class="commentArticle">
|
||||
<p class="commentText">$content</p>
|
||||
</article>
|
||||
</div>
|
||||
EOF);
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
<div id="newComment">
|
||||
<form action="/newComment.php" method="post">
|
||||
<label for="name">Name:</label><br>
|
||||
<input type="text" id="name" name="name"><br><br>
|
||||
|
||||
<label for="email">E-Mail: (wird nicht veröffentlicht)</label><br>
|
||||
<input type="text" id="email" name="email"><br><br>
|
||||
|
||||
<label for="comment">Kommentar:</label><br>
|
||||
<textarea name="comment" id="comment"></textarea><br><br>
|
||||
|
||||
<input type="submit" value="Kommentar veröffentlichen"><br>
|
||||
<p>Mit dem klick auf den obigen Button erklären sie sich mit der <a href="/datenschutzerklaerung.html">Datenschutzerklärung</a> einverstanden.</p>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<footer includeHTML="/include/footer.php">
|
||||
</footer>
|
||||
|
|
|
@ -63,7 +63,45 @@ include "../internal/mysql.php";
|
|||
<a href="/files/MQTT_Message.zip"><button>Download</button></a><br>
|
||||
<img src="/img/MQTT-push.png">
|
||||
<img src="/img/MQTT-push-window.png">
|
||||
<h2>Kommentare:</h2>
|
||||
<?php
|
||||
|
||||
$article = basename($_SERVER["SCRIPT_FILENAME"], '.php');
|
||||
$result = $conn->query("SELECT * FROM comments WHERE article='$article'");
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
$name = $row["name"] . "<br>";
|
||||
$gravatar = get_gravatar($row["email"]);
|
||||
$content = $row["comment"];
|
||||
|
||||
echo(<<<EOF
|
||||
<h3 class="commentTitle">$name</h3>
|
||||
<div class="comment">
|
||||
<img src="$gravatar">
|
||||
<article class="commentArticle">
|
||||
<p class="commentText">$content</p>
|
||||
</article>
|
||||
</div>
|
||||
EOF);
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
<div id="newComment">
|
||||
<form action="/newComment.php" method="post">
|
||||
<label for="name">Name:</label><br>
|
||||
<input type="text" id="name" name="name"><br><br>
|
||||
|
||||
<label for="email">E-Mail: (wird nicht veröffentlicht)</label><br>
|
||||
<input type="text" id="email" name="email"><br><br>
|
||||
|
||||
<label for="comment">Kommentar:</label><br>
|
||||
<textarea name="comment" id="comment"></textarea><br><br>
|
||||
|
||||
<input type="submit" value="Kommentar veröffentlichen"><br>
|
||||
<p>Mit dem klick auf den obigen Button erklären sie sich mit der <a href="/datenschutzerklaerung.html">Datenschutzerklärung</a> einverstanden.</p>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<footer includeHTML="/include/footer.php">
|
||||
</footer>
|
||||
|
|
|
@ -86,7 +86,45 @@ include "../internal/mysql.php";
|
|||
</tbody>
|
||||
</table><br>
|
||||
<img src="/img/regensensor.jpg">
|
||||
<h2>Kommentare:</h2>
|
||||
<?php
|
||||
|
||||
$article = basename($_SERVER["SCRIPT_FILENAME"], '.php');
|
||||
$result = $conn->query("SELECT * FROM comments WHERE article='$article'");
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
$name = $row["name"] . "<br>";
|
||||
$gravatar = get_gravatar($row["email"]);
|
||||
$content = $row["comment"];
|
||||
|
||||
echo(<<<EOF
|
||||
<h3 class="commentTitle">$name</h3>
|
||||
<div class="comment">
|
||||
<img src="$gravatar">
|
||||
<article class="commentArticle">
|
||||
<p class="commentText">$content</p>
|
||||
</article>
|
||||
</div>
|
||||
EOF);
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
<div id="newComment">
|
||||
<form action="/newComment.php" method="post">
|
||||
<label for="name">Name:</label><br>
|
||||
<input type="text" id="name" name="name"><br><br>
|
||||
|
||||
<label for="email">E-Mail: (wird nicht veröffentlicht)</label><br>
|
||||
<input type="text" id="email" name="email"><br><br>
|
||||
|
||||
<label for="comment">Kommentar:</label><br>
|
||||
<textarea name="comment" id="comment"></textarea><br><br>
|
||||
|
||||
<input type="submit" value="Kommentar veröffentlichen"><br>
|
||||
<p>Mit dem klick auf den obigen Button erklären sie sich mit der <a href="/datenschutzerklaerung.html">Datenschutzerklärung</a> einverstanden.</p>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<footer includeHTML="/include/footer.php">
|
||||
</footer>
|
||||
|
|
|
@ -75,7 +75,45 @@ include "../internal/mysql.php";
|
|||
<a href="/files/SmartMirror.zip"><button>Download</button></a><br><br>
|
||||
<img src="/img/Spiegel.jpg">
|
||||
|
||||
<h2>Kommentare:</h2>
|
||||
<?php
|
||||
|
||||
$article = basename($_SERVER["SCRIPT_FILENAME"], '.php');
|
||||
$result = $conn->query("SELECT * FROM comments WHERE article='$article'");
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
$name = $row["name"] . "<br>";
|
||||
$gravatar = get_gravatar($row["email"]);
|
||||
$content = $row["comment"];
|
||||
|
||||
echo(<<<EOF
|
||||
<h3 class="commentTitle">$name</h3>
|
||||
<div class="comment">
|
||||
<img src="$gravatar">
|
||||
<article class="commentArticle">
|
||||
<p class="commentText">$content</p>
|
||||
</article>
|
||||
</div>
|
||||
EOF);
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
<div id="newComment">
|
||||
<form action="/newComment.php" method="post">
|
||||
<label for="name">Name:</label><br>
|
||||
<input type="text" id="name" name="name"><br><br>
|
||||
|
||||
<label for="email">E-Mail: (wird nicht veröffentlicht)</label><br>
|
||||
<input type="text" id="email" name="email"><br><br>
|
||||
|
||||
<label for="comment">Kommentar:</label><br>
|
||||
<textarea name="comment" id="comment"></textarea><br><br>
|
||||
|
||||
<input type="submit" value="Kommentar veröffentlichen"><br>
|
||||
<p>Mit dem klick auf den obigen Button erklären sie sich mit der <a href="/datenschutzerklaerung.html">Datenschutzerklärung</a> einverstanden.</p>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<footer includeHTML="/include/footer.php">
|
||||
</footer>
|
||||
|
|
|
@ -97,7 +97,45 @@ make
|
|||
<p>Kleiner Ergänzung, bei der Installation auf einem Raspberry Pi bin ich auf zwei Fehler gestoßen. Der erste war, dass der Raspberry Pi keinen direkten Mikrofon Eingang hatte. Der zweiter war dann schon etwas exotischer, ich habe nämlich meine China USB Soundkarte zum testen angeschlossen. Dort kam aber nur als Fehler "Invalid Sample Rate". Das Problem der Soundkarte ist, dass sie nur 44kHz als Abtastrate unterstützt, Snowboy braucht aber eine Abtastrate von 16kHz wie ich daraufhin nachgelesen habe. Unten sind zwei Screenshots der Fehler angefügt.</p><br>
|
||||
<img src="/img/snowboy_no_mic.png">
|
||||
<img src="/img/snowboy_wrong_sample_rate.png">
|
||||
<h2>Kommentare:</h2>
|
||||
<?php
|
||||
|
||||
$article = basename($_SERVER["SCRIPT_FILENAME"], '.php');
|
||||
$result = $conn->query("SELECT * FROM comments WHERE article='$article'");
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
$name = $row["name"] . "<br>";
|
||||
$gravatar = get_gravatar($row["email"]);
|
||||
$content = $row["comment"];
|
||||
|
||||
echo(<<<EOF
|
||||
<h3 class="commentTitle">$name</h3>
|
||||
<div class="comment">
|
||||
<img src="$gravatar">
|
||||
<article class="commentArticle">
|
||||
<p class="commentText">$content</p>
|
||||
</article>
|
||||
</div>
|
||||
EOF);
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
<div id="newComment">
|
||||
<form action="/newComment.php" method="post">
|
||||
<label for="name">Name:</label><br>
|
||||
<input type="text" id="name" name="name"><br><br>
|
||||
|
||||
<label for="email">E-Mail: (wird nicht veröffentlicht)</label><br>
|
||||
<input type="text" id="email" name="email"><br><br>
|
||||
|
||||
<label for="comment">Kommentar:</label><br>
|
||||
<textarea name="comment" id="comment"></textarea><br><br>
|
||||
|
||||
<input type="submit" value="Kommentar veröffentlichen"><br>
|
||||
<p>Mit dem klick auf den obigen Button erklären sie sich mit der <a href="/datenschutzerklaerung.html">Datenschutzerklärung</a> einverstanden.</p>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<footer includeHTML="/include/footer.php">
|
||||
</footer>
|
||||
|
|
|
@ -64,7 +64,45 @@ include "../internal/mysql.php";
|
|||
<a href="//gitlab.jonasled.de/jonasled/WebsiteCloner">gitlab.jonasled.de/jonasled/WebsiteCloner</a>
|
||||
</p>
|
||||
|
||||
<h2>Kommentare:</h2>
|
||||
<?php
|
||||
|
||||
$article = basename($_SERVER["SCRIPT_FILENAME"], '.php');
|
||||
$result = $conn->query("SELECT * FROM comments WHERE article='$article'");
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
$name = $row["name"] . "<br>";
|
||||
$gravatar = get_gravatar($row["email"]);
|
||||
$content = $row["comment"];
|
||||
|
||||
echo(<<<EOF
|
||||
<h3 class="commentTitle">$name</h3>
|
||||
<div class="comment">
|
||||
<img src="$gravatar">
|
||||
<article class="commentArticle">
|
||||
<p class="commentText">$content</p>
|
||||
</article>
|
||||
</div>
|
||||
EOF);
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
<div id="newComment">
|
||||
<form action="/newComment.php" method="post">
|
||||
<label for="name">Name:</label><br>
|
||||
<input type="text" id="name" name="name"><br><br>
|
||||
|
||||
<label for="email">E-Mail: (wird nicht veröffentlicht)</label><br>
|
||||
<input type="text" id="email" name="email"><br><br>
|
||||
|
||||
<label for="comment">Kommentar:</label><br>
|
||||
<textarea name="comment" id="comment"></textarea><br><br>
|
||||
|
||||
<input type="submit" value="Kommentar veröffentlichen"><br>
|
||||
<p>Mit dem klick auf den obigen Button erklären sie sich mit der <a href="/datenschutzerklaerung.html">Datenschutzerklärung</a> einverstanden.</p>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<footer includeHTML="/include/footer.php">
|
||||
</footer>
|
||||
|
|
|
@ -61,6 +61,45 @@ include "../internal/mysql.php";
|
|||
<div id="content">
|
||||
<p>In letzter Zeit habe ich wieder vermehrt Musik, teilweise komplette Playlists, von YouTube heruntergeladen, leider war ich mit allen Tools, welche ich gefunden habe nicht besonders zufrieden, oder sie haben nach kurzer Zeit nicht mehr funktioniert. Das beste Tool, welches ich finden konnte war das Programm <a href="https://youtube-dl.org/">y</a><s><a href="https://youtube-dl.org/">outube-dl</a> leider gibt es aber für dieses Programm keine Oberfläch</s>e. (Update: Ich bin umgestiegen auf YoutubeExplode, welches für C# optimiert ist.) Jedesmal über die Konsole zu gehen wollte ich auch nicht, deswegen habe ich eine kleine und einfache Oberfläche in C# geschrieben. In diesen gibt man einfach den URL und den Speicherort ein, der Rest wird alles automatisch gemacht.</p>
|
||||
<p>Der Quellcode ist in der <a href="https://gitlab.jonasled.de/jonasled/Youtube-Downloader-YoutubeExplode">git Repo</a></p>
|
||||
<h2>Kommentare:</h2>
|
||||
<?php
|
||||
|
||||
$article = basename($_SERVER["SCRIPT_FILENAME"], '.php');
|
||||
$result = $conn->query("SELECT * FROM comments WHERE article='$article'");
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
$name = $row["name"] . "<br>";
|
||||
$gravatar = get_gravatar($row["email"]);
|
||||
$content = $row["comment"];
|
||||
|
||||
echo(<<<EOF
|
||||
<h3 class="commentTitle">$name</h3>
|
||||
<div class="comment">
|
||||
<img src="$gravatar">
|
||||
<article class="commentArticle">
|
||||
<p class="commentText">$content</p>
|
||||
</article>
|
||||
</div>
|
||||
EOF);
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
<div id="newComment">
|
||||
<form action="/newComment.php" method="post">
|
||||
<label for="name">Name:</label><br>
|
||||
<input type="text" id="name" name="name"><br><br>
|
||||
|
||||
<label for="email">E-Mail: (wird nicht veröffentlicht)</label><br>
|
||||
<input type="text" id="email" name="email"><br><br>
|
||||
|
||||
<label for="comment">Kommentar:</label><br>
|
||||
<textarea name="comment" id="comment"></textarea><br><br>
|
||||
|
||||
<input type="submit" value="Kommentar veröffentlichen"><br>
|
||||
<p>Mit dem klick auf den obigen Button erklären sie sich mit der <a href="/datenschutzerklaerung.html">Datenschutzerklärung</a> einverstanden.</p>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<footer includeHTML="/include/footer.php">
|
||||
</footer>
|
||||
|
|
Loading…
Reference in a new issue