Showing posts with label php. Show all posts
Showing posts with label php. Show all posts

Monday, May 21, 2007

What? My Program Works?

I gotta say, the ability to understand programming pays off. After getting fed up with the time I was wasting logging into Ta-Da List I decided to write my own listing program.

I like to look at it as a list management system.

I really didn't need to be super organized, such as organizing by day, week, etc. I created the list just how I would create my own sticky notes - random, jot some info down with a title and post it. The program works just the same - I have an idea, I click my bookmark, the web application comes up and I'm ready to go. Add a title, a little descriptive information and wah-la! It's posted. I can even edit the list if I screw something up and I can delete it once the task/list/whatever is completed.

I'm still thinking about releasing it once I complete the interface to meet my tastes. Will it be open source? Most likely!

PHP and MySQL are a great marriage. What are some of the applications some of you guys are building to meet your needs?

Thursday, May 10, 2007

CodeIgnitor Test Drive

As I posted last night, I downloaded CodeIgnitor, a PHP framework. I must say, so far I am very impressed.

After looking at some of the video tutorials to get a feel for how the framework is based (simple Hello World, Blog in 20 Minutes), I thought I would give it a try. I started by creating a few simple scripts, ranging from 'Hello World' to a basic string that would print variables and solutions to a math problem. From there I created my own blogging system in under 50 minutes, which isn't bad at all I think for just picking up the system.

Now it's time for the fun-run. The listing system I created a few weeks ago is taking shape but is far from where I wanted it. Currently it runs on close to, give or take, 8 files. After 35 minutes I have recreated the system with CodeIgnitor. All that is left is to add the delete function and it will be set to go.

All in all, I think this is a great resource for PHP developers and those that are just picking up the language. If you have programmed in Java, then you will definitely appreciate the libraries as it will make time more manageable in your PHP development.

Wednesday, May 9, 2007

Test Driving CodeIgniter

I've recently downloaded CodeIgniter, a PHP framework. From what I've seen from the videos it looks to quite effective. I'll be testing it out this week and will post later on my thoughts and comments.