使用img src url传递多个php变量

时间:2016-08-23 18:20:56

标签: php image variables url src

我是PHP的新手。创建具有多个页面的应用程序。

Sample1.php

$queue=$_POST['element_3'];//Customer name
$month=(int)$_POST['month'];//month as value 06
$std_yy = $_POST['year'];// 2016
<img src="trend_g.php?element_3=$queue&month=$std_mm&year=$std_yy" /> //does not work
<img src="trend_g.php?element_3=Apple&month=06&year=2016" />//works

trend_g.php

$queue=$_GET['element_3'];
$month=(int)$_GET['month'];
$std_yy = $_GET['year'];

请帮我通过URL传递变量。我也尝试了以下。

<img src="trend_g.php?element_3='.$queue.'&month='.$std_mm.'&year='.$std_yy.'" /> //didnt work.

查看各种选项,但我被困在这里。任何帮助都非常感谢!

1 个答案:

答案 0 :(得分:0)

你还没有在PHP中调用img元素作为PHP,即在结束PHP标记之前(?&gt;)

变化

echo '<img src="trend_g.php?element_3='.$queue.'&month='.$std_mm.'&year='.$std_yy.'" /> ';

echo '<img src="trend_g.php?element_3=Apple&month=06&year=2016" />';

<img src="trend_g.php?element_3=$queue&month=$std_mm&year=$std_yy" />

修改

如果您关闭了php,那么您需要更改

<img src="trend_g.php?element_3=<?php echo $queue;?>&month=<?php echo $std_mm;?>&year=<?php echo $std_yy;?>" />

{{1}}