私はiPadでこれをタイプしているので、簡潔であれば少し失礼です。私の質問は次のとおりです:新しい(比較的)イグナイタをコードする:いくつかの基本的な質問
ビュー内に単純なロジックを持つことはこれまでで大丈夫ですか?たとえば、
<HTML>
<!-- ... Stuff
-->
<?php if($this->session->userdata('authorized'): ?>
<p>You are authorized</p>
<?php else: ?>
<p>You are not authorized</p>
<?php endif; ?> // Question 1, is this the proper use of an endif:?
<!-- .. Stuff
->>
</HTML>
/* Starting to type the rest of message on my laptop. Big thank yous to the coders on
this site who made my pc login transfer my unsaved, half typed iPad post */
上記のコードでは、限定されたPHPの使用が醜いものになっていたはずです。私はそれが見えるようにしたかった。
とにかく、上には、#2の質問:それはビューでは、このような簡単な条件を使用しても、適切な
ですか?
もう一度お読みいただきありがとうございます。
お返事ありがとうございます。明確な助け。 – STONEYFTW