Tfe

Ongi etorri tfe-ren webgunera...

Old stuff/old_sites/pigeon/include_pigeon.php

(Deskargatu)
<? include("connect.php"); include("func.php"); ?>
<html>
<head>
<style type="text/css">
body,td,th {
	background-color:#f7f7f7;
        font-family: Verdana, Arial, Helvetica, sans-serif;
	        font-size: 9px;
		        color: #333333;
			}
			


table,tr,td { border:none; background-color:#f7f7f7;}
td.right { text-align:right; }
td.left { text-align:left; }
td.image { border:1px solid black; margin:5px;}

</style>
<title>include_pigeon.png</title>
<meta http-equiv="Content-Type" content="text/html;">
</head>
<body bgcolor="#ffffff">
<center>
<table width="500px" border="1">
<?
$query = "SELECT * FROM pig_breeding ORDER BY id DESC";
$result = mysql_query($query) or die(mysql_error());
while($row = mysql_fetch_assoc($result))
{
echo "
<tr>
    <td class=\"right\">".$row{'papa'}."</td>
    <td class=\"image\"><a target=\"_BLANK\" href=\"breeding/".$row{'gde_image'}."\"><img style=\"border:none\" width=\"80px\" src=\"breeding/".$row{'image'}."\"></a></td>
    <td class=\"left\">".$row{'maman'}."</td>
</tr>
";
}
?>
</table>
</center>
</html>