<?php
include("setari.php");
$cxn = @ConnectToDb($dbServer, $dbUser9, $dbPass9, $dbName9);
$check = mysql_query("SELECT * FROM clienti limit 1")or die(mysql_error());
while($myrow = mysql_fetch_array( $check ))
{
$nume=$myrow[nume];
$companie=$myrow[companie];
$fax=$myrow[fax];
$adresa=$myrow[adresa];
}
?>
<html>
<head>
<title><?php echo $nume;?></title>
<meta name=description content="<?php echo $nume;?>">
<link rel="stylesheet" type="text/css" href="css.css">
</head>
<body>
<div align="center">
<?php include "elements/header.php";?>
<br>
<table border="0" width="900" cellspacing="0" cellpadding="0">
<tr>
<td width="200" valign="top">
<div align="center">
<?php include "elements/menu.php";?>
</td>
<td valign="top" align=center width="700" bgcolor=#ffffff>
<div align=right><b><font face="Arial" size="2" color="#666666"><i><?php echo $fax;?></i></font></b> </div><br>
<br><br><br>
<font color=#666666 face=verdana size=4>
<?php echo $adresa;?>
</font>
<br><br><br><br>
</td>
</tr>
<tr><td></td>
<td align=right colspan=2><?php include "elements/footer.php";?>
</td></tr>
</table>
</div>
</body>
</html>