sweet..i hacked it further and put a form field in there so you can punch the url to be checked into the form.im only a newbie php whiz so any if any of the pros see anything that needs s......[阅读全文]
学习目的:做一个分页显示关键就是用到了SQL语句中的limit来限定显示的记录从几到几。我们需要一个记录当前页的变量$page,还需要总共的记录数$num对于$page如果没有我们就让它=0,如果有<0就让它也=0,如果超过了总的页数就让他=总的页数。$execc=select count(*) from tablename ;$resultc=mysql_quer......[阅读全文]
学习目的:学会添加删除修改数据mysql_query($exec);单这个语句就可以执行所有的操作了,不同的就是$exec这个sql语句添加:$exec=insert into tablename (item1,item2) values (.$_POST[item1].,.$_POST[item1].);删除:$exec=delete from tablename wh......[阅读全文]
以前写了十天学会ASP,十天学会ASP.NET什么的,现在想想再写个PHP吧,也算比较全了。 PHP的调试方法我这里就不说了,外面很多文章都有介绍,也有很多不同的组合。我这里暂时是以 Apache web server 和 MY SQL 作为WEB服务器和数据库,在php-4.3.3下的环境做的程序。当然要简单的构建和访问查看数据库 PHPMYADMIN 不可少。至于表单......[阅读全文]