试图将标题传递到php文件无法正常工作

时间:2010-12-28 17:22:53

标签: php

我从vars.php开始:

<?php
include('goo.php');
$googl = new goo_gl('http://myurl.info?=sdfdsfs'.uniqid());
$url1 = $googl->result();
$link=$url1; 
$message=$msgarray[rand(0,count($msgarray)-1)];
$picture="http://img6.imageshack.us/img6/4540/7.jpg"; 
?>

我想感受http://mmyurl.info?=sdfdsfs'。uniqid()进入goo.gl api吐出一个缩短的网址

然后在标题“

中的vars.php中使用此信息

然后在另一个调用$ link的页面上使用此信息,但我永远无法使其正常工作

1 个答案:

答案 0 :(得分:1)

您应首先为查询字符串变量指定名称:

$googl = new goo_gl('http://myurl.info?myvar=sdfdsfs'.uniqid());

现在,您可以通过myvar访问$_GET['myvar']的值。