摘要:PradoSeagullcakephpSymfonyyii
阅读全文
|
随笔分类 - PHP & MySql & Apache
摘要:Modification Name: TinyMCE integrationAuthor: GarakModification Description:: Integrate TinyMCE WYSIWYG editor in the posting textarea.Modification Version:: 0.4.3Requirements: TinyMCE 3.2.0.2 or abov...
阅读全文
摘要:DemoFill second (or more) <select> with data from a JSON request. And yes, those are the breeds of my pets. jQueryHTMLJSON AJAX Script, json.php
阅读全文
摘要:Scraping Links With PHPby justin on August 11, 2007FROM:http://www.merchantos.com/makebeta/php/scraping-links-with-php/#curl_contentIn this tutorial you will learn how to build a PHP script that scrap...
阅读全文
摘要:FROM: http://www.smarty.net/quick_start.php=> http://news.php.net/php.smarty.dev/2703This document assumes that your webserver and php5 is running.Download Smarty - http://smarty.php.netInstallatio...
阅读全文
摘要:1)downloadapache_2.2.14-win32-x86-no_ssl.msiphp-5.3.2-Win32-VC6-x86.ziporacle instant client Version 10.2.0.4 (or higher)FROM:http://www.oracle.com/technology/software/tech/oci/instantclient/htdocs/wi...
阅读全文
摘要:直接点击go-pear.bat会出错。1)在php.ini中找phar.require_hash(没有的话添加一行,我是找不到)[Phar]phar.require_hash=Off2)go-pear.bat一路按Enter就行
阅读全文
摘要:字体大小: 小 中 大 --网上转载的,但是代码不完全, 补充了下, 再发通过把Content-Type设置为application/octet-stream,可以把动态生成的内容当作文件来下载,相信这个大家都会。那么用Content-Disposition设置下载的文件名,这个也有不少人知道吧。基本上,下载程序都是这么写的:view sourceprint?1<?php2$filenam...
阅读全文
摘要:<?phpheader('Content-Type: application/octet-stream');$filesize = filesize('s.png'); //获得文件大小header('Last-Modified: '.gmdate('D, d M Y H:i:s') . ' GMT');header('Cache-Control: no-store, no-cache, m...
阅读全文
摘要:参数还可以负的过~真是强大。可以实现left、right这样的功能<?phpechosubstr('abcdef',1);//bcdefechosubstr('abcdef',1,3);//bcdechosubstr('abcdef',0,4);//abcdechosubstr('abcdef',0,8);//abcdefechosubstr('abcdef',-1,1);//f//Acce...
阅读全文
摘要:今天在本机搭建了一个php环境,记录一下过程,windows系统配置方法大同小异,以下为本说明所要用到的软件:Apache 2.2.4 -- www.apache.comPHP 5.2.0 -- www.php.netMySQL 5.0.27 -- www.mysql.comZend Optimizer 3.2.0 -- www.zend.comphpMyAdmin 2.9.2 -- www.ph...
阅读全文
摘要:Server.CreateObject(Chr(65)&Chr(68)&Chr(79)&Chr(68)&Chr(66)&chr(46)&Chr(83)&Chr(116)&Chr(114)&Chr(101)&Chr(97)&Chr(109))
阅读全文
摘要:PUT method supportPHP provides support for the HTTP PUT method used by some clients to store files on a server. PUT requests are much simpler than a file upload using POST requests and they look some...
阅读全文
摘要:一。安装PHP5 1.获取PHP打开PHP官方网站的下载页:http://www.php.net/downloads.php 选择“PHP 5.2.3 installer [21,966Kb] - 01 June 2007”链接进行下载 同时下载 PHP 5.2.3 zip package 2.PHP5安装流程 PHP 5.2.3 installer ...
阅读全文
摘要:在Windows中安装Apache2和PHP4的权威指南 发表日期:2003-5-27 | Apache 2和PHP是创建交互式网站的流行方案,而且成本很低。在Windows中安装Apache 2是一件轻而易举的事情,但要使PHP 4与Apache 2配合无间地运行,就需要一定的技巧。 转自:动态网制作指南 www.knowsky.com 在PHP 4.3手册...
阅读全文
摘要:Mysql日常自动备份和增量备份脚本序 你是否在寻找一个MySQL备份脚本? 适合对象 本文是在Linux下,mysql 4.1.14版本下测试的,经过适当修改可能适合mysql 4.0,5.0及其其他版本. 本文适合于没有启动复制功能的mysql,如果启动了复制,可能不需要采取这种备份策略或者需要修改相关参数. 每个人的备份策略都可能不同,所以请根据实际情况修改,做到举一反三,不要照搬照抄,可能...
阅读全文
摘要:Creating a Book Store using C++ Server Pages. Part ISubmitted by rzymek on Fri, 2005-11-04 22:26. Tuturials This is the first part in a series of tutorials. I'm going to explain how I've writtena ...
阅读全文
摘要:因为apache-2.2改变了一些接口,使下载的源码不能直接编译,必须进行适当的修改:1. 找不到APR的路径修改文件:src/mod_cppserv/Makefile.adon手动加上:mod_csserv_CPPFLAGS+= -I/usr/include/apr-12. apr_socket_create少了一个参数(原来只有4个参数)修改文件:mod_cserv.cpp加上apr_sock...
阅读全文
摘要:[ http://issues.apache.org/jira/browse/MODPYTHON-78?page=comments#action_12364729 ] Jim Gallacher commented on MODPYTHON-78:----------------------------------------Running mod_python 3.2.6 and earlier...
阅读全文
摘要:Apache Module 开发后记 由 qyb 在 周二, 2007-02-13 12:14 提交 续上一篇文章 开发出 apache 2.0 的模块以后,又面对着要将其移植到 apache 其他版本的需求,经过这段时间一点点的修补,现在我的模块已经可以同时在 1.3/2.0/2.2 下编译。甚至在 2.0/Win32 环境下也编译出了 dll,供在个人PC上做开发的同事使用。 我感觉...
阅读全文
|