| |
Slugen clients list
Following table contains list of Slugen Ltd. clients.
Except software development services, Slugen Ltd. is dealing with developing of components, libraries and
frameworks. These components evolved into a popular tools and utilities for
rapid development.
[ More about Slugen products ]
|
$db = mysql_pconnect("localhost", "slugen", "sng2003");
mysql_select_db("slugen", $db);
$query = mysql_query("SELECT clieID, clieName, clieStreet, clieCity, clieZIP, clieWeb, clieImage FROM Client", $db);
$row = mysql_fetch_row($query);
while ($row)
{
$id = $row[0];
$name = $row[1];
$street = $row[2];
$zip = $row[4];
$web = $row[5];
echo " | ";
echo "";
echo $name;
echo " ";
if ($street)
{
echo $street;
echo " ";
}
if ($zip)
{
echo $zip;
echo " ";
}
echo $row[3];
echo " ";
if ($web)
{
echo "";
echo $web;
echo " ";
}
echo " ";
echo " | ";
$row = mysql_fetch_row($query);
}
?>
|