このクエリのリンクを作成したい
これが私のコードです
$getfood = "<a href="./student.php?id=">" . $food['clickid'] . "</a>" $food['clickid'];
エラーが発生します:Parse error: syntax error, unexpected '/'
正しいコードの書き方..
次のようになるはずです<a href="./student.php?id=33">33</a> 33
このクエリのリンクを作成したい
これが私のコードです
$getfood = "<a href="./student.php?id=">" . $food['clickid'] . "</a>" $food['clickid'];
エラーが発生します:Parse error: syntax error, unexpected '/'
正しいコードの書き方..
次のようになるはずです<a href="./student.php?id=33">33</a> 33
二重引用符をエスケープする必要があります。
$getfood = "<a href=\"./student.php?id=\">" . $food['clickid'] . "</a>" . $food['clickid'];
「こうあるべき
<a href="./student.php?id=33">33</a> 33
」
コードは次のとおりです。
<?php
$food = array("clickid" => 33);
$getfood = "<a href=\"./student.php?id=" .
$food['clickid'] . "\">". $food['clickid'] . "</a> " . $food['clickid'];
print $getfood;
版画:
<a href="./student.php?id=33">33</a> 33
引用符をエスケープし、すべての文字列をドットで連結したことに注意してください。