', '>', $stripped_sql_query);
include("./header.inc.php3");
echo $strDoYouReally.$stripped_sql_query."?
";
?>
left frame should be reloaded
if (!empty($reload) && eregi("^CREATE TABLE (.*)", $sql_query))
$reload = true;
if(isset($sessionMaxRows))
$cfgMaxRows = $sessionMaxRows;
$sql_limit = (isset($pos) && eregi("^SELECT", $sql_query) && !eregi("LIMIT[ 0-9,]+$", $sql_query)) ? " LIMIT $pos, $cfgMaxRows" : '';
mysql_select_db($db);
$result = mysql_query($sql_query.$sql_order.$sql_limit);
// the same SELECT without LIMIT
if(eregi("^SELECT", $sql_query))
{
$array=split(' from | FROM ',$sql_query,2); //read only the from-part of the query
$count_query="select count(*) as count from $array[1]"; //and make a count(*) to count the entries
$OPresult = mysql_query($count_query);
if ($OPresult) {
$SelectNumRows = mysql_result($OPresult,'0','count');
}
}
if(!$result)
{
$error = mysql_error();
include("./header.inc.php3");
mysql_die($error);
}
$num_rows = @mysql_num_rows($result);
if($num_rows < 1)
{
if(file_exists("./$goto"))
{
if(isset($zero_rows) && !empty($zero_rows))
$message = $zero_rows;
else
$message = $strEmptyResultSet;
$goto = preg_replace('/\.\.*/', '.', $goto);
if ($goto != "main.php3")
{
include("./header.inc.php3");
}
include('./' . $goto);
}
else
{
$message = $zero_rows;
Header("Location: $goto");
}
exit;
}
else
{
include("./header.inc.php3");
// Define the display mode if it wasn't passed by url
if (!isset($display)) {
$display = eregi('^((SHOW (VARIABLES|PROCESSLIST|STATUS))|((CHECK|ANALYZE|REPAIR|OPTIMIZE) TABLE ))', $sql_query, $which);
if (!empty($which[2]) && !empty($which[3])) {
$display = 'simple';
} else if (!empty($which[4]) && !empty($which[5])) {
$display = 'bkmOnly';
}
}
display_table($result, ($display == 'simple' || $display == 'bkmOnly'));
if ($display != 'simple')
{
if ($display != 'bkmOnly') {
echo " $strInsertNewRow
";
}
// Bookmark Support
if($cfgBookmark['db'] && $cfgBookmark['table'] && $db!=$cfgBookmark['db'] && empty($id_bookmark))
{
echo "
";
}
}
} //ne drop query
require("./footer.inc.php3");
?>