找回密码
 注册
【阿里云】2核2G云新老同享 99元/年,续费同价华为云精选云产品特惠做网站就用糖果主机Jtti,新加坡服务器,美国服务器,香港服务器
查看: 441|回复: 7

大家帮我看看我这个PHP搜索程序哪些地方又有错误了!!

[复制链接]
发表于 2005 年 10 月 7 日 09:54:20 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?注册

×
  演示地址如下:http://aiya.jx828.net/sous.htm
http://free3.e-168.cn/aiyatx/sous.htm
目的是想按关键字搜索
后台程序代码如下:
PHP代码
  1. <?php
  2. $yoururl=""
  3. if($xm=="gc"){
  4. echo "<meta http-equiv=\"refresh\" content=\"0; url=http://music.yisou.com/lyric.html?pid=82676_1006&p=".$keyword."&mimetype=all&source=yisou_music_result_topsearch\"> ";
  5. exit();}
  6. if($xm=="wy"){
  7. echo "<meta http-equiv=\"refresh\" content=\"0; url=http://www.yisou.com/search?p=".$keyword."&pid=82676_1006&needbid=&source=3721_union\"> "
  8. ;exit();}
  9. if($xm=="gq"){
  10. echo "<meta http-equiv=\"refresh\" content=\"0; url=mtv/search.php?keyword=".$keyword."\"> ";
  11. exit();}
  12. if($xm=="bdwy"){
  13. echo "<meta http-equiv=\"refresh\" content=\"0; url=http://www.baidu.com/s?tn=aiyat&ct=&lm=&z=&rn=&word=".$keyword."&_sv=1&_si.x=19&_si.y=13\"> ";
  14. exit();
  15. }
  16. ?>
复制代码
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
发表于 2005 年 10 月 7 日 09:56:16 | 显示全部楼层
【腾讯云】2核2G云服务器新老同享 99元/年,续费同价
[s:10]
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

发表于 2005 年 10 月 7 日 16:17:03 | 显示全部楼层
$xm 换成 $_REQUEST['xm']
还有那个$keyword也换
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

 楼主| 发表于 2005 年 10 月 7 日 17:38:16 | 显示全部楼层
下面是引用stock于2005-10-07 16:17发表的:
$xm 换成 $_REQUEST['xm']
还有那个$keyword也换
换了,还是不行啊!!
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

发表于 2005 年 10 月 7 日 19:48:55 | 显示全部楼层
这样写才对!
注意编码规范哦
  1. <?php
  2. $keyword = $_POST['keyword'];
  3. $xm = $_POST['xm'];
  4. if ($xm == "gc") {
  5.        echo "<meta http-equiv=\"refresh\" content=\"0; url=http://music.yisou.com/lyric.html?pid=82676_1006&p=".$keyword."&mimetype=all&source=yisou_music_result_topsearch\"> ";
  6.        exit;
  7. }
  8. if ($xm == "wy") {
  9.       echo "<meta http-equiv=\"refresh\" content=\"0; url=http://www.yisou.com/search?p=".$keyword."&pid=82676_1006&needbid=&source=3721_union\"> ";
  10.       exit;
  11. }
  12. if ($xm == "gq") {
  13.       echo "<meta http-equiv=\"refresh\" content=\"0; url=mtv/search.php?keyword=".$keyword."\"> ";
  14.        exit;
  15. }
  16. if ($xm == "bdwy") {
  17.       echo "<meta http-equiv=\"refresh\" content=\"0; url=http://www.baidu.com/s?tn=aiyat&ct=&lm=&z=&rn=&word=".$keyword."&_sv=1&_si.x=19&_si.y=13\"> ";
  18.       exit;
  19. }
  20. ?>
复制代码
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

发表于 2005 年 10 月 7 日 19:53:40 | 显示全部楼层
$yoururl="" 后面没有分号
$yoururl="" ;
这种错误也犯,真服了你
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

 楼主| 发表于 2005 年 10 月 7 日 20:59:49 | 显示全部楼层
【腾讯云】2核2G云服务器新老同享 99元/年,续费同价
下面是引用stock于2005-10-07 19:53发表的:
$yoururl="" 后面没有分号
$yoururl="" ;
这种错误也犯,真服了你
哎,我怎么没看清呢!!但它错误却是说&quotarse error: parse error in e:\freehost\2005\aiya\web\sous.php on line 3"
蛮郁闷的!
还有,十分感谢vayva 的指正,已经搞定了!!
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

 楼主| 发表于 2005 年 10 月 7 日 09:54:20 | 显示全部楼层

大家帮我看看我这个PHP搜索程序哪些地方又有错误了!!

  演示地址如下:http://aiya.jx828.net/sous.htm
http://free3.e-168.cn/aiyatx/sous.htm
目的是想按关键字搜索
后台程序代码如下:
PHP代码
  1. <?php
  2. $yoururl=""
  3. if($xm=="gc"){
  4. echo "<meta http-equiv=\"refresh\" content=\"0; url=http://music.yisou.com/lyric.html?pid=82676_1006&p=".$keyword."&mimetype=all&source=yisou_music_result_topsearch\"> ";
  5. exit();}
  6. if($xm=="wy"){
  7. echo "<meta http-equiv=\"refresh\" content=\"0; url=http://www.yisou.com/search?p=".$keyword."&pid=82676_1006&needbid=&source=3721_union\"> "
  8. ;exit();}
  9. if($xm=="gq"){
  10. echo "<meta http-equiv=\"refresh\" content=\"0; url=mtv/search.php?keyword=".$keyword."\"> ";
  11. exit();}
  12. if($xm=="bdwy"){
  13. echo "<meta http-equiv=\"refresh\" content=\"0; url=http://www.baidu.com/s?tn=aiyat&ct=&lm=&z=&rn=&word=".$keyword."&_sv=1&_si.x=19&_si.y=13\"> ";
  14. exit();
  15. }
  16. ?>
复制代码
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

Archiver|手机版|小黑屋|金光论坛

GMT+8, 2024 年 11 月 20 日 06:27 , Processed in 0.023951 second(s), 22 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表