ポップオーバーを利用する Bootstrap と PHP の両方を使用してテーブルを作成しています。理想的には、ポップオーバーに JPG を含めたいのですが、既に echo を使用して html テーブルを作成しているため、それを組み込む方法がわかりません。以下に示すように、通常の「img src」を含めようとしましたが、コードを出力しているだけです。
echo "<td colspan='$newlength' id='example' rel='popover' data-content='<img src='imagetouse.jpg' /> This is my content.' data-title=' This is my Title'>$name . $time2</td>";
上記のコードは、画像 src の後でタグを終了します。エコーのタグ全体を囲むため、画像の周りに "" を使用できず、コードが再び終了します。
nietonfir の提案を試みた:
echo '<td colspan="' . $newlength . '" id="example" rel="popover" data-content="<img src=\'imagetouse.jpg\' /> This is my content." data-title="This is my Title">' . $name . $time2 . '</td>';
画像を表示するのではなく、ポップオーバーのコンテンツが読み取られるようになりました。
<img src='imagetouse.jpg' /> This is my content.