I'm wondering if the GD-LIB offers a good performance compared to java-applets or flash?
Is it actually better to make a Graph or something like this via a java-applet or flash?
I've heard that java-applets offers a quite bad performance, is that true?
Hi! F.E I have this class: class Person{ var $name; var $age; var $hairs; function Person($a, $b, $c){ $this->name = $a; $this->age = $b; $this->hairs = $c; } function Say(){ echo "Name:".$this->name."<br>Age:".$this->age."<br>Hairs:".$this->hairs; } } and now i want to...
Hi! I createt a menu, in this menu there are allways site.php?id=xxx links. And site.php will include $id. but.. I did something like this: $access = "no"; if($id=="home"){$access="yes";} elseif($id=="works"){$access="yes";} elseif($id ... etc. etc. ...