有沒有辦法在HTML標籤內打印php變量?如何在<a>標籤內打印php信息?
像這樣:
<?php
for ($e = 1; $e <= 30; $e++) {
for ($i = 1; $i <= 40; $i++) {
print ('<div id="map"><a>$i</a></div>'); // <----I'm adding the divs here, but I want to add a text inside each of them
}
}
?>
它做到了! 我不經常使用php,所以這種類型的thigs完全不在我心中!謝謝 – Marco 2012-01-09 21:07:42