PHPRPC只负责数据传输,并且将传输做到最好!它将你以前用传统的 ajax 方式做不到或者很难做到的事情变得轻而易举!
code
PHP APC文件上传进度条实现范例
Standard需先安装APC扩展模块
PHP用GD生成验证码
Standardvalidatecode.php function random($len){...}
PHP分页函数
Standard$sql="SELECT * FROM tb"; //取得总信息数 $result=mysql_query($sql); $total=mysql_num_rows($result); //调用pageft(),每页显示10条信息(使用默认的20时,可以省略此参数),使用本页URL(默认,所以省略掉)。 pageft($total,10,"http://www.yemaosheng.com/index"); //现在产生的全局变量就派上用场了: $result=mysql_query($sql." limit $firstcount,$displaypg");
PHP数据库存储session
StandardFirst up, we need to create a table to handle the session data, and here's how it will look: CREATE TABLE sessions (ID INT NOT NULL AUTO_INCREMENT PRIMARY KEY, SessionID CHAR(26), Data TEXT DEFAULT '', DateTouched INT); Now, session operations script