Posts by amelie
-
1
PHPAskIt removed from CodeGrrl
PHPAskIt is no longer available at CodeGrrl. If you would like to download the script in future, please visit its new home.
November 18, 2007 |
By Amelie |
Comments Off |
Filed under Scripts, Updates
-
2
Part 12: Paginating your entries
Many people have asked how to paginate their blog’s front page so as to show the previous/next 5 entries, for example. This tutorial was originally posted on the forums by Amanda.
April 28, 2007 |
By Amelie |
Comments Off |
Filed under Build A Blog, Tutorials
-
3
This tutorial will teach you how to add simple categories to your blog.
April 27, 2007 |
By Amelie |
Comments Off |
Filed under Build A Blog, Tutorials
-
4
NL-PHPMail 2.2 has been released. This version contains the following updates:
- Improved header injection protection
- Improved captcha
- Better error handling
- Easier customization
- Double-escaped entities in received emails now fixed
All users of NL-PHPMail are advised to upgrade in order to fully protect against header injection.

March 2, 2007 |
By Amelie |
Comments Off |
Filed under Scripts, Updates
-
5
“This page cannot be accessed directly”?
Whenever I try to submit my form, I get the following error: Error: This page cannot be accessed directly. It doesn’t go away no matter what I do!
You MUST name the submit button from your form “submit”. Instructions on how to do this can be found in the readme file, but basically this is the general idea:
Your form will have a submit button for it to work properly. The code will look something like this:
<input type="submit" value="Send form" />
For the form to work correctly, you need to modify that code so that it looks like this:
<input type="submit" value="Send form" name="submit" />
See the name="submit" part? That part MUST be included for the form to work properly.
June 4, 2006 |
By Amelie |
Filed under FAQ, NL-PHPMail, Scripts