| Tip of The Day - GorillaScript verses PHP |
Thinking of using GorillaScript vs PHP. Here are some examples:
Creating a variable: In GorillaScript:
set $a="HELLO"; $a;
In PHP:
<?$a = "Bob";?> <?php $a; ?>
Testing an equality: In GorillaScript:
if($a.Equals("YES")) { "It is true !<br>"; }
In PHP:
<?php if(strstr($a,"YES")) { echo "It is true !<br>"; } ?>
|