11 2008 档案

Some PHP Learning Resource.
摘要: 1. PHP环境搭建。easyPHP : http://www.easyphp.org/xampp:http://www.apachefriends.org/en/xampp.html 都是一站式搭建,有时候80端口会被IIS或者inetinfo.exe占用,在进程管理器里把它杀掉,再启动apache即可。2. MySQL数据库创建。如果不用dos创建,可以用 MySQL-Front: http:...阅读全文
posted @ 2008-11-17 22:03 iam9527 阅读(118) | 评论 (0) 编辑
ASP shopping cart
摘要: Create a Fully Functional, Multifeatured ASP Shopping Basket By Manny AgrinyaFull Source Code The SolutionCreating a shopping cart application with all the functionality of the commercial options, plu...阅读全文
posted @ 2008-11-07 23:53 iam9527 阅读(258) | 评论 (1) 编辑
在textarea里替代enter键
摘要: textarea里常用enter换行,但是当submit form 并且储存到数据库时, 有时候enter Key会导致sql query出错,可以用replace()方法替换enter成别的字符。VBscript in Classic ASP:Dim t1t1 = request.form("textarea")t1 = replace(t1, vbCrLf, "--") 'Done!这里的回车...阅读全文
posted @ 2008-11-04 19:24 iam9527 阅读(141) | 评论 (0) 编辑