Yes, it is possible to embed the grids directly into php files. The trade off is that the mouse-over does not work well, and will have to be turned off from the Main Config. (Or else the mouse over box will not position properly)
Here is an example PHP using a function call – create a php file with the following content:
(Place the file in the script's directory so it can find config.php)
<?php require ('config.php'); $BID = $_REQUEST['BID']; if ($BID=='') { $BID = 1; } if ($DB_ERROR) { echo "Database configuration error: ".$DB_ERROR; } else { show_map($BID); } ?>