Where is the best free online resource for simple to advanced php scripts? I already passed W3school.
PHP Scripts
Collapse
X
-
if you ever need help phpbuilder.com and devshed.com will help you outSince 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

My Newest ThemeComment
-
Do some digging and you'll find that Hotscripts has plenty of that infoOriginally posted by raulph
Hotscripts isn't free. Looking for free ones. Basic guides that go over common advanced scripting. Not looking for website scripts etc, just trying to learn the language
And yes...lots of it is FREE!Comment
-
-
Here's the listing of PHP tutorials:Originally posted by candyflip
Do some digging and you'll find that Hotscripts has plenty of that info
And yes...lots of it is FREE!
http://hotscripts.com/PHP/Tips_and_Tutorials/index.htmlComment
-
Actually I think I found what I was looking for on php.net. Thanks guys!
http://www.php.net/manual/en/features.http-auth.phpComment
-
You might want to look into PHP sessions for having 'logged in' users. Although htauth will work too.Originally posted by raulph
I am specifically trying to find out how to let only logged in users have access to a
index.php?action=XXX pageComment
-
I can't seem to find what I am looking for. The problem is I am having is that anyone can simply type in www.site.com/index.php?action=hello
and get access to the full page. I want to make it so only logged in users can access this page.
Here is the member login box source if that helps:
case "1":
if(isset($_COOKIE['USERNAME'])) {
$oldSignin = $_COOKIE['USERNAME'];
}
echo "<form name=\"form1\" method=\"post\" action=\"\" style=\"margin-left:17px; margin-right:12px;\">\n
<br />\n
<div class=\"loginFormTxt\">\n
Login:\n
</div>\n
<input name=\"login\" type=\"text\" value=\"{$oldSignin}\"size=\"16\">\n
<div class=\"loginFormTxt\">Password:</div>\n
<input name=\"password\" type=\"password\" size=\"16\">\n
<input type=\"submit\" name=\"Submit\" value=\" login \" class=\"loginFormButton\" size=\"20\">\n
<br />\nComment


Comment