php - Googlemap_Location does not print the correct map -


i having issue display iframe showing google map.

<html> <head> <?     $map = new googlemap_location( 'main' );      echo $map->getheaderjs();      $sql = "select ortsteil ortsteile ortid = '".$ortsteileid."'";     $res = mysql_command( $sql );     $ortsteile = mysqli_result( $res, 0, "ortsteil" );   ?> </head> <body  onload="onload();"> <div> <h4>map here</h4> </div> <table> <tr> <td style="border:1px solid #dddddd">  <?     $googlemap = new googlemap_location( '$ortsteile' );     $googlemap->setwidth( 400 );   $googlemap->setheight( 370 );     $_coords = $googlemap->geogetcoords( $ortsteile.', liguria, italy' );     $googlemap->setcentercoords( $_coords['lon'], $_coords['lat'] );     $googlemap->printmapjs();     $googlemap->printmap( ); ?>   </td> </tr> </table> </div> </body> </html> 

the query correct , when inspect element on website iframe there not showing anything.

any ideas?

change

$googlemap = new googlemap_location( '$ortsteile' ); 

to

$googlemap = new googlemap_location($ortsteile); 

Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -