Viewing file: donjinas.inc (871 B) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?
mysql_connect (localhost, us10505a, proba);
mysql_select_db (db10505a);
$result = mysql_query ("SELECT title,ID,date,Slag FROM news Where topicId=1 or topicId=13 ORDER BY ID desc LIMIT 14 ");
if ($row = mysql_fetch_array($result)) {
do {
$nooo=$row["ID"];
print ("<font face=\"verdana\"><font size=\"1\">");
print $row["date"];
print ("</font>");
print ("<br>");
print ("<font face=\"verdana\"><font size=\"1\">");
print $row["Slag"];
print ("</font>");
print ("<br>");
print ("<b><font face=\"verdana\"><font size=\"1\"><font color=\"Navy\"><a href=\"index.php3?akcija=clanak&no=$nooo\">");
print $row["title"];
print ("</a></font></b>");
print (" ");
print ("<hr size=1>");
} while($row = mysql_fetch_array($result));
} else {print "Nema clanaka!";}
?>
|