本文整理汇总了PHP中Handler::handleForm方法的典型用法代码示例。如果您正苦于以下问题:PHP Handler::handleForm方法的具体用法?PHP Handler::handleForm怎么用?PHP Handler::handleForm使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Handler
的用法示例。
在下文中一共展示了Handler::handleForm方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: header
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* 2007 - 2012, Rainer Furtmeier - Rainer@Furtmeier.de
*/
header("Pragma: no-cache");
header("Cache-Control: no-cache, must-revalidate");
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");
error_reporting(E_ALL);
if (function_exists('date_default_timezone_set')) {
date_default_timezone_set('Europe/Berlin');
}
require "./connect.php";
if (isset($_POST["formID"]) or isset($_GET["formID"])) {
Handler::handleForm(isset($_POST["formID"]) ? $_POST : $_GET);
exit;
}
if (isset($_GET["d"])) {
$_SERVER["HTTP_HOST"] = $_GET["d"];
}
if (isset($_GET["AJAXClass"])) {
$c = $_GET["AJAXClass"];
if (substr($c, 0, 2) != "CC") {
$c = "CC{$c}";
}
$c = new $c();
$parameters = array();
if (isset($_GET["AJAXParameters"])) {
$parameters = explode(";;;", $_GET["AJAXParameters"]);
}