那儿有PHP或ASP论坛源码下载?

2024-05-07 16:48

1. 那儿有PHP或ASP论坛源码下载?

http://down.91.com有很多的代码下载

那儿有PHP或ASP论坛源码下载?

2. 求代码转换 asp 转成php

<?php
$title=_REQUEST['ID'];
if ($title==1)
{echo "测试1";}
?>

 

<?
if ($title==2)
{echo "测试2";}
?>

 

3. 将asp代码转换成php代码

呵呵,这不就是一个跳接的denglu代码么?在很多网址导航出现过,但是网易已经屏蔽了这种登录方式。代码给你,记事本写的。

<?php
$ltype = trim($_GET['type']);
$username = trim($_GET['username']);
$password = trim($_GET['password']);

if($ltype === 1 || $ltype == 1){
  echo "location.href=\"http://reg.163.com/login.jsp?type=1&url=http://entry.mail.163.com/coremail/fcg/ntesdoor2?lightweight=1&verifycookie=1&&username=" , 

$username , "&password=" , $password , "\"";
}else if($ltype === 2 || $ltype == 2){
  echo "location.href=\"http://reg.163.com/login.jsp?type=1&product=mail126&url=http://entry.mail.126.com/cgi/ntesdoor?hid=10010102&lightweight=1&&username=" , 

$username , "&password=" , $password , "\"";
}else if($ltype === 3 || $ltype == 3){
  echo "location.href=""http://reg.163.com/login.jsp?type=1&product=mailyeah&url=http://entry.mail.yeah.net/cgi/ntesdoor?

lightweight=1&verifycookie=1&&username=" , $username , "&password=" , $password , "\"";
}else{
   echo 'location.href="http://www.kcvg.cn/"';
}

?>
当然啦,想破解网易的“不安全网站效验”还是可以利用PHP伪造引用头的。

将asp代码转换成php代码

4. asp源码与php可以结合吗

你想怎么结合??? 调用的话可以, 不知道你怎么说的。

用一个数据库也可以,但是不知道你想怎么样?

5. 源码高手进。。关于ASP PHP

自己上网搜一下,很多资料

源码高手进。。关于ASP PHP

6. 谁能把这段ASP代码转换成PHP

<?
  include("conn.asp");
 if($_GET['action']=="add")
 {

$gonghuiid =trim($_POST['gonghuiid']);
$zhiwu = trim($_POST['zhiwu']);
$qq= trim($_POST['qq']);
$xuanyan = trim($_POST['xuanyan']);


$Sql="Select * from 数据 where gonghuiid='".$gonghuiid."' and zhiwu='".$zhiwu."' and qq='".$qq."' and xuanyan='".$xuanyan."'" 

 $result = mysql_query($sql,$conn);
    $num = mysql_num_rows($result);
 // ;
  if($num>0)
  {
     echo "alert('提交完成!马上转入浏览状态');this.location.href='asp/img.asp?id="&rs("id")&"';";
  
  }else
  {
   
    $sq = "insert into 数据 (gonghuiid,zhiwu,qq,xuanyan) VALUES ('".$gonghuiid."','".$zhiwu."','".$qq."','".$xuanyan."')";
    mysql_query($sq);
    echo "alert('提交完成!马上转入浏览状态');this.location.href='asp/img.asp?id=".$id."';";
    
  }
 mysql_close($conn);

}
?>

7. 急求一个在线投票源码,ASP/PHP都可以吧,

智睿投票评选管理系统 v1.0.0
系统功能:
1、IP封锁管理、代理IP安全过滤功能,上传文件管理,防SQl注入,脏话过滤功能
2、单选/多选切换,投票开关,验证码开关,有效时间功能
3、防刷开关,防刷时间,安全页面跳转功能
4、IP开关功能,有效时间控制,IP可投票管理
5、会员开关功能,有效时间功能,www.zk22.com会员有效投票管理
6、Cookies开关功能,有效时间功能,Cookies有效投票管理
7、多权限后台管理功能,认证码登入功能。
8、完善会员注册,推荐评选,支持多图上传功能
9、新闻发布,和分类管理、评选新闻功能
10、评选咨询,在线回复管理功能
11、关于我们,友情链接管理功能
12、评选排行,人气排行图形显示功能
下载地址:http://www.zzcms.cn/jzyuanmahtml/828.html

急求一个在线投票源码,ASP/PHP都可以吧,

8. 求一个asp或者PHP的源码,下载相关的!

这个没有太大问题,就是支持远程文件本地下载的方式。
这样的做法以前做过,可是发现一个很大的问题就是网络超时的问题,如果对方的地址很大的话,怎么办?
至于下载的源代码,还是比较简单的,得到输入地址,然后直接打开远程文件,保存到本地,然后跳出本地的相对路径或者下载方式就可以了。