我想知道(所有的方式),PHP嵌入在HTML和HTML在PHP中。 我知道這個辦法:所有模式嵌入的PHP在HTML和HTML在PHP
<?php
echo '<p>text here</p>';
?>
<p>Some of this text is static, <?php echo 'text here'; ?></p>
<?php echo '<p>'; ?>
html text here...
<?php echo '</p>';?>
embedding in conditional
<?php if(conditions) { ?>
... HTML CODE ...
<?php } ?>
Embeding in ul
<ul>
<?php for($i=1;$i<=5;$i++){ ?>
<li>Menu Item <?php echo $i; ?></li>
<?php } ?>
</ul>
embeding in forms and textarea
<form action = 「…..」 method = 「post」>
Type your name:<br><input type = 「text」 name = 「name」 value = <?php code here...?>」<br>
<input type = 「submit」 value = 「submit」>
</form>
<textarea rows = 「7」 cols=」25」><?php cod here.... ?></textarea>
請給我在PHP嵌入HTML和HTML嵌入php.It對我來說很重要的另一種模式!
模板引擎是我能想到的唯一的其他方式.. SMARTY,Dwoo,Savant,Pear ..名單繼續.. – Pogrindis 2014-10-17 08:45:47