Hey ich hab mir mal ne Abfrage gemacht aba iwas stimmt damit nicht:
PHP
		
					
				<?php
include"PHP-1.php";
$query      =       "SELECT * FROM a_jugend";
$result     =       mysql_query( $query );
$datensatz  =       mysql_fetch_row( $result );
foreach( $datensatz as $schluessel => $wert )
(
    echo "Schluessel: ". $schluessel . " Wert : " . $wert ." "
";
        )
?>
<html>
    <head>
        </head>
    <body>
        </body>
</html>
	
			Alles anzeigen