Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ここにimgを表示するための私のimgタグがあります
<img src="https://graph.facebook.com/"+<?php echo $user_id; ?>+"/picture?type = small"> ..[x]
user_id は、コードの上でここで受け取る php 変数です。
<?php $user_id = $_POST['userid']; ?>
[x] のようなエラーは何ですか? それは画像を表示しません
はい、わかった。
<img src="https://graph.facebook.com/<?php echo $user_id; ?>/picture?type = small">
作品