scriptygoddess

04 Oct, 2004

Form Processing

Posted by: Jennifer In: Bookmarks

Living on del.icio.us this morning. Some more finds:

Phorm: PHP form processing
Can include form data in an acknowledgement page, email it to one or more addresses, validate it, includ it in an autoresponder message, lot it to a text file or mySQL database.

Also available is a "jr." version:
Phorm Jr is as stated on the site: … smaller and simpler, making it easier to install and configure. If all you need is to acknowledge your visitors and email the form data to yourself, then Phorm Jr. is perfect for you.

Comments Off on Form Processing

04 Oct, 2004

PHP: Login System and Site Traffic Monitoring

Posted by: Jennifer In: Bookmarks

Yet more finds on del.icio.us:

PHP Login System with Admin Features
A script and article (about the script's implementation) of a nice login system.

phpOpenTracker
As stated on the site: phpOpenTracker is a framework solution for the analysis of website traffic and visitor analysis.

Comments Off on PHP: Login System and Site Traffic Monitoring

04 Oct, 2004

PHP/SWF charts

Posted by: Jennifer In: Bookmarks

Another find from del.icio.us:

PHP/SWF Charts
Give it some data and it can generate SWF charts for you on the fly – with many customizable attributes.

Comments Off on PHP/SWF charts

04 Oct, 2004

phpThumb()

Posted by: Jennifer In: Bookmarks

Someone at work sent me the link to this:

phpThumb()
Looks like an interesting way to handle thumbnail generations on the fly. As described on that page:

phpThumb() uses the GD library to create thumbnails from images (JPEG, PNG, GIF, BMP, etc) on the fly. The output size is configurable (can be larger or smaller than the source), and the source may be the entire image or only a portion of the original image. True color and resampling is used if GD v2.0+ is available, otherwise paletted-color and nearest-neighbour resizing is used.

(updated to add an additional link)
Poking around on del.icio.us, I also found this link for dynamic thumbnail generation:

Dynamic Thumbnailing with Imagemagick in PHP

I've been trying to figure out a better way to notify people when a plugin is updated. At the moment I've just been leaving a comment in the post – so those who are subscribed to comments, get "notified". Seems now there's a better way:

up2date
From the looks of it, it seems like if I support this plugin in my plugins, it will notify users of my plugins when I make an update. I'll look into this further, and if it makes sense I'll support it.
[via Blogging Pro]

02 Oct, 2004

CSS Panic Guide

Posted by: Jennifer In: CSS related

I have seen this before, but forgot where, and forgot to save the link.

CSS Panic Guide
A number of good articles/information on various CSS related schtuff.
[most recently via del.icio.us]

Comments Off on CSS Panic Guide

30 Sep, 2004

OOP in JavaScript.

Posted by: Jennifer In: Lessons learned

The article by Sergey Zavadski introduces the object model of the JavaScript programming language and demonstrates common practices in the OOP (object oriented programming) with the JavaScript.
Read the rest of this entry »

30 Sep, 2004

Simple Tricks for More Usable Forms

Posted by: Jennifer In: Bookmarks

Haven't read the whole article, but wanted to save the link for when I had more time:

Simple Tricks for More Usable Forms [JavaScript & DHTML Tutorials]
What I did read so far, looked very interesting and seemed like something I'd want to reference again.
[via del.icio.us]

Comments Off on Simple Tricks for More Usable Forms

30 Sep, 2004

PHP: Hiding Errors

Posted by: Jennifer In: Lessons learned

I was running into a problem with undefined index errors. You'll get that if you do seomthing like:

echo $_GET['name'];

when there is no $_GET['name']. One option is to check to make sure $_GET['name'] is set like

if (isset($_GET['name'])) {
echo $_GET['name'];
}

But if you're feeling lazy, you can leave your code as is and just add this at the top of your file

error_reporting(E_ALL ^ E_NOTICE);

Alternatively, turning off those notices is a setting you can adjust in .ini file, but if you don't have access to that file, then just putting that error_reporting line in your code will suffice
[found on experts exchange thread]

Comments Off on PHP: Hiding Errors

30 Sep, 2004

Tutorials

Posted by: Jennifer In: Bookmarks

I'm going to add this to my tutorials post, but wanted to make a special post highlighting it too.

Web Tutorials
A pretty nice selection of (from the looks of it beginner-level) tutorials on a variety of subjects including XHTML, CSS, Javascript, PHP, mySQL (mySQL section doesn't appear to be live yet)

Featured Sponsors

Genesis Framework for WordPress

Advertise Here


  • Scott: Just moved changed the site URL as WP's installed in a subfolder. Cookie clearance worked for me. Thanks!
  • Stephen Lareau: Hi great blog thanks. Just thought I would add that it helps to put target = like this:1-800-555-1212 and
  • Cord Blomquist: Jennifer, you may want to check out tp2wp.com, a new service my company just launched that converts TypePad and Movable Type export files into WordPre

About


Advertisements