Witam mam taki problem jestem początkujący w php i mysql i nie umie troche zrobićpewniej Mam taki kod chce aby dane pokazywały się na stronie
<?php
require_once "connect.php";
$polaczenie = @new mysqli($host, $db_user, $db_password, $db_name);
if ($polaczenie->connect_errno!=0)
{
echo "Error: ".$polaczenie->connect_errno;
}
else
{
$wynik = mysql_query("SELECT * FROM news")
or die('Błąd zapytania');
}
echo "<div class='news'>";
if(mysql_num_rows($wynik) > 0) {
/* jeżeli wynik jest pozytywny, to wyświetlamy dane */
echo "<table cellpadding=\"2\" border=1>";
while($r = mysql_fetch_assoc($wynik)) {
echo "<tr>";
echo "<td>".$r['autor']."</td>";
echo "<td>".$r['content']."</td>";
echo "<td>" ;
echo "<a href=\'index.php?a=del&id={$r['id']}\'>DEL</a>" ;
echo "<a href=\'index.php?a=edit&id={$r['id']}\'>EDIT</a>" ;
echo"</td>";
echo "</tr>";
}
echo "</table>";
echo "</div>";
}
?>