28.06.2011, 00:48
Seriously? You know Pawno well but you can't learn php? PHP is propably the easiest programming language..
example:
php
pawno:
I actually havent learned php, but i have created many scripts, helping system (ticket helping) and idea submiting with my newbie knowlodge. PHP is easy, you don't need a teacher for that. Just read w3school tuts.
example:
php
pawn Code:
$asd = 'lol lol lol';
if($asd=='lol lol lol') echo "Value: " . $asd;
pawn Code:
new asd[32];
strcat(asd, "lol lol lol", 64);
if(!strcmp(asd, "lol lol lol", true))
{
new string[64];
format(string, 64, "Value: %s", asd);
SendClientMessage(string)
}