dstt1818 2016-05-22 21:40
浏览 20
已采纳

使用$ _GET将变量传递到另一个页面无效

$_GET is not working when passing variables from one page to another page.

Title - ID - Embed are all showing in the URL on page two so I don't think the problem is on page 1 being that is appears to be passing the variables.

The $_GET['embed'] is working on page 2 but not the $_GET['id'] and $_GET['title']

Page 1:

$title = $row['title'];;
$id = $row['id'];;
$linkurl = $row['embed'];;
$src1 = $row['thumbs1'];; 
echo '<a href="show/video_show.php?title='.$title.'&id='.$id.'&embed='.$linkurl.'"><img height="160" width="260"  style="border:none;" src="'. $src1 .'" /></a>';

Page 2:

Title: <? echo $_GET['title']; ?>  
<iframe src="<?php echo $_GET['embed'];?>"allowfullscreen="allowfullscreen" scrolling="no" width="770" height="440"></iframe>
<p>Video Number: <? echo $_GET['id'];?>
 <!-- embed is working -->
  • 写回答

1条回答 默认 最新

  • dsa122870 2016-05-22 21:45
    关注

    You have issue in your PAGE 2 file :

    Replace <? with <?php

    Title: <?php echo $_GET['title']; ?>  // changed
    <iframe src="<?php echo $_GET['embed'];?>"allowfullscreen="allowfullscreen" scrolling="no" width="770" height="440"></iframe>
    <p>Video Number: <?php echo $_GET['id'];?> //changed
     <!-- embed is working -->
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部