Lololololol! ^^^^^^^^^^^ :d
Lololololol! ^^^^^^^^^^^ :d
Jonty d/w matey, pehump and the other tr0lling piece of shits here dont realise good work when they see it
Horrible, just like Zap Network
Tr0ll has spoken.
we goez liek fmlfmlfmlfmlfmlfmlfml. oh he is right?...
Lol, when it is named zap network i don't want any business with it O.o
Finally something thats not edited ubercms. Good job.
can u just leave jontycat alone i would all like to see u lot code somethink like this in 3 hours so stop trolling him adleast he tryed
Mmaxwell, joopie does stuff like this much faster :D cuz joopie = awesome.
And pejump is also good at this, he could maybe do soemthing like this or better in 3 hours if he wants 2, i really dunno about his php skillz (:
But he could create something in c# which would be as great as this in 3 hours
(now i am talking about a command which does something great, or a new system or something)
Cheers Jonty, good release.
All the haters can fuck off! Jonty has put a lot of hard work into this. It is a nice system.
Aha, I thought I was teh hat3r...All the haters can fuck off! Jonty has put a lot of hard work into this. It is a nice system
Still fails, horrible coding (hunch). Go back to w3schools.
Nice Job Jonty.. At least your releasing something.. :P
Coding is clean and looks really nice. I like to use ternary operators though, so for example instead of doing:
I would do:PHP Code:function isLogged()
{
if(isset($_SESSION['z_username']))
{
return 1;
}
else
{
return 0;
}
}
Less coding and looks nice :)PHP Code:function isLogged()
{
return( ( isset( $_SESSION['z_username'] ) ) ? 1 : 0 );
}