PHP Baskı ve Echo HTML

0 Cevap php

çok basit bir soru. Lol i genellikle php ile çok iyi değilim bu neden sormak mahcup ama php içinde html görüntülemek için yolları nelerdir ki? örneğin:


<? if($flag): ?>
  <div>This will show is $flag is true </div>
<? endif; ?>

VEYA


<?
  if($flag)
    echo '<div>This will show is $flag is true </div>';
?>

I know that there are at least 2 other ways i just cannot remember them atm... Help is def. appreciated in advance!! =D

0 Cevap