hornet
Posts: 1
|
| Posted: 06/22/2007, 12:11 AM |
|
Hi all!
I'm new to code charge, and still finding my feet a bit with PHP. I've been thrown in the deep end a bit at work as my primary role is Systems Admin. Our Web developer is a little over loaded so I'm helping him out.
Is there an API or similar for the code charge classes and functions?
For example I'm trying to find out what the parameters are for CCGetRequestParam() function. Is there anywhere I can look this up that will tell me what it does, and what I can parse to it and have returned?
I as I'm working through the project I'm finding more of these functions that I need to understand.
Any help would be appreciated.
Regards,
Adrian
_________________
:) |
 |
 |
JimmyCrackedCorn
Posts: 583
|
| Posted: 06/22/2007, 2:49 AM |
|
do you mean CCGetParam? or CCGetFromGet? or something else? I searched and did not find CCGetRequestParam (but that doesn't mean its not there!)
have you tried searching the documentation or help file? these topics (and more) are covered there.
_________________
Walter Kempees...you are dearly missed. |
 |
 |
Wkempees
|
| Posted: 06/22/2007, 5:01 AM |
|
Path to look
1/ Help File
2/ Online docs
3/ Common.php (in your publish directory)
4/ classes.php (same place)
As an example CCGetParam(parameter. default)
is in Common.php and searches for the parameter in the POST variables
if not there it searches the GET varables and if not there returns
default value.
Walter
|
|
|
 |