PHP没有在html外观中显示我的$ name

时间:2015-08-27 17:11:05

标签: php

您好,这是我的脚本

{
$ign = file_get_contents("LINK.com={$name}");
echo '<div> class="alert alert-success"><b> $name </b> has the in game name: 
$ign </div>';
}

问题是脚本不会显示生成的$ name&amp; $ IGN 它只给了我$ name&amp; $ ign不是我想要的 $ ign会在游戏名称中这是因为html但是我不明白应该怎么做才能使它工作? 对不起,这是我的第一篇文章,我是php的新手。

感谢您看一看,甚至回答。

1 个答案:

答案 0 :(得分:0)

您可以使用此更改代码。

$ign = file_get_contents("LINK.com={".$name."}");
echo '<div> class="alert alert-success"><b> '.$name.' </b> has the in game name: 
'.$ign.' </div>';