Schleife mit PHP********

Hallo Zusammen,

Ich bekomme wieder Fehler raus,ich weiß es jetzt nicht mehr, wie ich diese Problem lösen könnte,könnte ihr vielleicht mir weiter helfen


Fehler :

Notice: Undefined index: ort.text_val in /home/www/test/www/Test /Koorimport/test.php on line 96 Call Stack: 0.0005 638688 1. {main}() /home/www/test/www/Test/Koorimport/test.php:0 Notice: Undefined index: plz.text_val in /home/www/www/Test


PHP:
$sql_latlon ="
SELECT coo.lat,coo.lon,plz.text_val,ort.text_val
FROM geodb_textdata plz
LEFT JOIN geodb_textdata ort ON plz.loc_id = ort.loc_id
LEFT JOIN geodb_coordinates coo ON plz.loc_id = coo.loc_id
WHERE plz.text_type = '500300000'AND ort.text_type = '500100000' ";
$res_latlon = mysql_query($sql_latlon) OR die("<br><b><font color='#FF0000' face='Verdana'>latlon nicht gefunden !</font></b><br>".mysql_error());
while($dat_latlon = mysql_fetch_assoc($res_latlon)) {

$Ergebnis="UPDATE Koordinaten2 set lat ='".$dat_latlon['lat']."',lon = '".$dat_latlon['lon']."' WHERE Ortname = '".$dat_latlon['ort.text_val']."' AND plz = '".$dat_latlon['plz.text_val']."'"; 

$mysqlstate = mysql_query($Ergebnis);
  echo $mysqlstate."<br/>";
}  
mysql_close($con);

Nur plz und Ort geht auch nicht
 
Zuletzt bearbeitet:
Zurück