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.
Kommt dieser Fehler Parse error: syntax error, unexpected '<' in C:\xampp\htdocs\p1.php on line 45.
Dies würde jedoch heißen, dass man in einen php code kein html einfügen kann. Dies verstehe ich jedoch nicht
<?php
mysql_connect("localhost", "root","") or die ("Verbindung nicht möglich");
mysql_select_db("iRead") or die ("Datenbank existiert nicht");
$result = mysql_query("SELECT * FROM faz Order by datum ");
while($row = mysql_fetch_row($result)) {
?>
<li class="menu"><a href="http://ul.to/o7m9f6ni"><img alt="list" src="pics/2.png" />
<span class="name"><?php echo $row[0];?>
</br>
</span><span class="arrow"></span></a></li>
<?php
}
?>