Preview: new.php
Size: 751 B
/home/www/idcceurope.com/www/idcceurope.com/cze/new.php
<?
require "db.php";
$vysledek = MySQL_Query("SELECT * FROM kontakt") or die (mysql_error());
$zaznam = MySQL_Fetch_Array($vysledek);
$web=$zaznam['nazev']."";
?>
<title><? echo "$web"; ?> | News </title>
<link href="styl.css" rel="stylesheet" type="text/css">
<table width="720" border="0" cellpadding="0" cellspacing="0">
<?php
require_once "db.php";
$vysledek = MySQL_Query("SELECT * FROM new ORDER BY id DESC") or die (mysql_error());
while($zaznam = MySQL_Fetch_Array($vysledek))
{
?>
<tr>
<td align="left" style="text-align:justify;padding-left:10px;padding-right:10px;line-height:20px;"><?php echo $zaznam["content_cs"];?></td>
</tr>
<?php
}
?>
</table>
Directory Contents
Dirs: 5 × Files: 46