Search found 6 matches

by grkpfl
Fri Sep 16, 2005 6:09 am
Forum: PHP - Theory and Design
Topic: GD-LIB
Replies: 3
Views: 1123

at first: thanks for your replie

i've heared about jpgraph, it seems to be nice :)
when it comes to a big amount of data, which way would be the fastest? Java, GD/jpgraph/php or Flash?

thanks again,
grkpfl
by grkpfl
Fri Sep 16, 2005 6:06 am
Forum: PHP - Security
Topic: Another Include...
Replies: 15
Views: 8766

hey, thats very nice :roll:
THANKS!
by grkpfl
Fri Sep 16, 2005 6:05 am
Forum: PHP - Code
Topic: inherit Classes - I dont get this:
Replies: 2
Views: 319

ahh, i understand :D
thanks
by grkpfl
Fri Sep 16, 2005 4:13 am
Forum: PHP - Theory and Design
Topic: GD-LIB
Replies: 3
Views: 1123

GD-LIB

hi.

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?

Thanks
by grkpfl
Fri Sep 16, 2005 4:08 am
Forum: PHP - Code
Topic: inherit Classes - I dont get this:
Replies: 2
Views: 319

inherit Classes - I dont get this:

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...
by grkpfl
Fri Sep 16, 2005 3:42 am
Forum: PHP - Security
Topic: Another Include...
Replies: 15
Views: 8766

Another Include...

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. ...