I have watched this forum for a good while and I decided to make this post, hopefully it will go sticky and be a reference for people who ask the common questions. So here are some questions commonly asked
1) Warning: session_start(): Cannot send session cache limiter
This is usually casued when the session_start() function is NOT called at the top of the
PHP script. This function must be the first line of code in a script. EG
Ref:
http://ie2.php.net/manual/en/function.session-start.php
2)How do I do index.php?foo=bar
This is repeated several times on the forum. To pass values through the URL you can use the HTTP GET feature or $_GET in PHP. In this URL , index.php?foo=bar , the foo is the variable and bar is the value, so to get it in PHP do the following
Several variables can be passed over the url , after the first one, the & separates the variables like so: index.php?foo=bar&car=wheels
Ref:
Iam sure there is alot more, so hopefully we can add to this post...
http://ie2.php.net/manual/en/reserve....variables.get