使PHP变量成为一个链接

时间:2012-07-22 02:12:10

标签: php javascript mysql

有谁知道如何从php变量中建立链接。我希望我的php变量$ LeagueLink是一个链接到leaguehome的mysql查询结果的名称。如果可以的话请帮忙......

$result = mysql_query("SELECT League FROM League_Info WHERE User_ID = '$id'");
$result2 = mysql_fetch_array($result);
    $result3 = $result2['League'];
    $LeagueLink = '<a href="home.com/test.php"><?=$result3?></a>';

2 个答案:

答案 0 :(得分:4)

$LeagueLink = "<a href=\"http://home.com/leaguehome.php\">$result3</a>";

要将变量直接放入上面的字符串中,它必须是双引号字符串("),而不是单引号字符串('

或者,如果您担心引起粗心大意的错误,请使用字符串连接:

$LeagueLink = '<a href="http://home.com/leaguehome.php">' . $result3 . '</a>';

答案 1 :(得分:1)

你也可以这样做

$LeagueLink = '<a href="home.com/leaguehome.php">'.$result3.'</a>';