How should I do this: if ("<?= $php_variable ?>" =="something"){/*Do this*/} else {/*do that*/} ? thanks!
I think you have to do like this: <?php if ($php_variable=="something"){ ?>/*Do this*/<?php } else { ?>/*do that*/<?php } ?> Code (markup):