Hallo Zusammen,
Ich weiß es nicht weiter, warum Sql Daten nicht angezeigt, ich hoffe , dass ihr mich weiter helfen könntet.
Ich weiß es nicht weiter, warum Sql Daten nicht angezeigt, ich hoffe , dass ihr mich weiter helfen könntet.
PHP:
<?php
define ( 'MYSQL_HOST', 'localhost' );
define ( 'MYSQL_BENUTZER', 'xxxx' );
define ( 'MYSQL_KENNWORT', 'xxxx' );
define ( 'MYSQL_DATENBANK','xxxxx' );
$con = mysql_connect ( "localhost" , "xxxxx" , "xxxxxx" ) ;
if ( !$con ) {
die ( 'Es könnte nicht verbinden werden : ' . mysql_error ()) ;
}
mysql_select_db ( "test" , $con ) ;
$result = mysql_query ( 'SELECT
coo.lon,
coo.lat
FROM geodb_coordinates AS coo
INNER JOIN geodb_textdata AS textdata
ON textdata.loc_id = coo.loc_id
WHERE
textdata.text_type = "500300000"
LIMIT 1' ) ;
echo "<table border='1'>
<tr>
<th>lat</th>
<th>long</th>
</tr>" ;
while ( $row = mysql_fetch_array ( $result )) {
echo "<tr>" ;
echo "<td>" . $row [ 'lat '] . "</td>" ;
echo "<td>" . $row [ 'long '] . "</td>" ;
echo "</tr>" ;
}
echo "</table>" ;
mysql_close ( $con ) ;
?>