<?php require_once('Connections/test.php'); ?>
<?php
mysql_select_db($database_test, $test);
$query_Recordset1 = "SELECT * FROM adressen";
$Recordset1 = mysql_query($query_Recordset1, $test) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Unbenanntes Dokument</title>
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td>Test</td>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<?php do { ?>
<tr>
<td><?php echo $row_Recordset1['Test']; ?></td>
<td><?php echo $row_Recordset1['1']; ?></td>
<td><?php echo $row_Recordset1['2']; ?></td>
<td><?php echo $row_Recordset1['3']; ?></td>
</tr>
<?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
</table>
</body>
</html>
<?php
mysql_free_result($Recordset1);
?>