sf-static/sql/modules/exporttbl.php

22 lines
507 B
PHP
Raw Permalink Normal View History

2023-02-28 18:21:07 +00:00
<?php
/**
* This file is a part of MyWebSQL package
*
* @file: modules/exporttbl.php
* @author Samnan ur Rehman
* @copyright (c) 2008-2014 Samnan ur Rehman
* @web http://mywebsql.net
* @license http://mywebsql.net/license
*/
function processRequest(&$db) {
$tableName = v($_REQUEST['table']);
if ($tableName) {
$replace = array('TABLENAME' => htmlspecialchars($tableName));
echo view('exporttbl', $replace);
}
else
echo view('invalid_request', array());
}
?>