Php
by Badguy · in General Discussion · 10/12/2003 (2:23 pm) · 3 replies
Ok im gonna get started with PHP
and im wondering if I can get some tips from anyone in the know.
i've heard some stuff about PHPNuke being no good..
can I get a definitive reason for that?
anyone got any direction they wish to point me in?
Thanks in Advance! :)
and im wondering if I can get some tips from anyone in the know.
i've heard some stuff about PHPNuke being no good..
can I get a definitive reason for that?
anyone got any direction they wish to point me in?
Thanks in Advance! :)
About the author
#2
PHP Nuke is the worst of them all. Do a search on sourceforge for portals. There way better ones out there.
10/12/2003 (3:40 pm)
All flavors of nuke are full of security holes.PHP Nuke is the worst of them all. Do a search on sourceforge for portals. There way better ones out there.
#3
I second that. You hopefully already know about the nice .CHM file. Also, be sure to check out the online, user-commented docs if you really get stuck. The advice and discussion there can prove invaluable, even if it is sometimes contradictory.
10/12/2003 (4:06 pm)
Quote:When something seems really difficult, go check the documentation. There are a lot of functions that usually do all tough stuff for you.
I second that. You hopefully already know about the nice .CHM file. Also, be sure to check out the online, user-commented docs if you really get stuck. The advice and discussion there can prove invaluable, even if it is sometimes contradictory.
Torque Owner Ernest
For a rather helpful script to help you see what extensions you have, and therefore what functions you have available to you check out the user-contributed comment on this page. It will serve a double purpose: all the functions that script spits out will link you directly to the php.net documentation on that function.
PHPNuke, I've heard, is rather bloated. It supposedly has functionality that sane people just don't need.
Tips:
- When you use a global varable in a function, you have to explicitly state it. You have to put "global $g_myVariable;" (where $g_myVariable is the name of your global variable) in the function.
- When something seems really difficult, go check the documentation. There are a lot of functions that usually do all tough stuff for you.
Good luck to you, sir.