Viewing file: albtekst.inc (990 B) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?
mysql_connect (localhost, us10505a, proba);
mysql_select_db (db10505i);
$result = mysql_query ("SELECT title,ID,date,Slag,details FROM news ORDER BY ID desc LIMIT 25 ");
if ($row = mysql_fetch_array($result)) {
do {
$tip=$row["topicId"];
$before=$row["details"];
$after=str_replace("#","'",$before);
$prazno=nl2br($after);
print ("<font face=\"verdana\"><font size=\"1\">");
print $row["date"];
print ("<a name=");
print $row["ID"];
print ("></a>");
print ("</font>");
print ("<br>");
print ("<b><font face=\"verdana\"><font size=\"2\">");
print $row["Slag"];
print ("</font></b>");
print ("<br>");
print ("<font face=\"verdana\"><font size=\"2\"><font color=\"Navy\"><b>");
print $row["title"];
print ("</font></b><br>");
print $prazno;
print ("<p>");
print ("<br>");
} while($row = mysql_fetch_array($result));
} else {print "Nema clanaka!";}?>
|