Bir If Else Bildirimi Styling

4 Cevap php

Ben herhangi bir PHP stil mümkün değil biliyorum ama PHP sağlar çıkış HTML stil mümkün olduğunu biliyoruz. Bana o benim EĞER ELSE deyimi çıktı stil beni sağlayacak kullanmak için uygun herhangi bir yöntem olup olmadığını merak ediyordum.

if ($result != false) {
    print "Your entry has successfully been entered into the blog.";
}

4 Cevap

Bunu demek?

if ($result != false) {
 print "<span style='color:#ff0000'>Your entry has successfully been entered into the blog.</span>";
}

Sadece basılı dizede HTML kullanabilirsiniz. Hiçbir şey fantezi gerekli.

if ($result != false) {
    print "<p class=\"success\">Your <strong>entry</strong> has <a href=\"http://example.com/\">successfully</a> been entered into the blog. <img src=\"smileyface.png\" alt=\"Smiley face\" /></p>";
}

Ben sadece hayatı kolaylaştırmak için, ne yapmak istediklerini, benim sayfa HTML ve PHP arasındaki geçmektir. Örneğin,

<?php if ($fooSuccess = true) {?>
<p><span style="color: green;">Success!</span></p>
<?php } else {?>
<p><span style="color: red;">Error!</span></p>
<?php } ?>

Daha sonra HTML yazdırmak gerekiyor.

if ($result != false) {
  print "<b>Your entry has successfully been entered into the blog.</b>";
}

Hatta

if ($result != false) {
  print "<div class='Style1'>Your entry has successfully been entered into the blog.</div>";
}