1

PHP変数からリンクを作成する方法を知っている人はいますか?PHP変数$LeagueLinkを、mysqlクエリの結果の名前を持つleaguehomeへのリンクにします。できれば助けてください…。

$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>';
4

2 に答える 2

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

上記のように変数を文字列に直接配置するには、一重引用符の文字列(")ではなく、二重引用符の文字列( ')である必要があります。

または、不注意によって引き起こされるエラーが心配な場合は、文字列の連結を使用します。

$LeagueLink = '<a href="http://home.com/leaguehome.php">' . $result3 . '</a>';
于 2012-07-22T02:14:17.997 に答える
1

これもできます

$LeagueLink = '<a href="home.com/leaguehome.php">'.$result3.'</a>';
于 2012-07-22T02:17:09.607 に答える