post.php
来自「zapatec suite 最新版 20070204,非常棒的ajax widg」· PHP 代码 · 共 23 行
PHP
23 行
<?php/* $Id: post.php 7323 2007-06-01 21:05:51Z alex $ */require_once 'JSON.php';$objJsonConverter = new Services_JSON();// Pause to demonstrate "Busy" animationsleep(1);// Form response$arrResponse = array( "success" => "Thank you! Data received successfully.", "first" => isset($_POST["first"]) ? $_POST["first"] : "", "last" => isset($_POST["last"]) ? $_POST["last"] : "", "org" => isset($_POST["org"]) ? $_POST["org"] : "");// Send responseecho $objJsonConverter->encode($arrResponse);?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?