We found 0 resources for you...

Adding a Google Calendar event using Google Forms

For a long time now I have been trying to find an easy way for the volunteers under my command to submit vacation requests.  I searched high and low for a PHP scheduler but nothing suited my needs.

I the realized that google had a calendar API which would allow external forms to add events to my calendar, but sadly this didn’t pan out either till I found out that Google also had its own form generator.  But sadly again, doing searched on how to add an event to Google Calendar from the form turned up either useless or empty.

I did manage to find a script that came close to what I wanted.  …

Continue reading

PCG – PHP Code Generator for CodeIgniter

Matthew 0 Comments

If you are like me, you hate coding the basics, the add, delete, modify, view commands that are the basis of all applications, also known as CRUD (create, read, update and delete).  It’s the first thing you do when creating an application, then you create your custom views, and forms.  For me, its a keystone step in creating any application, and I hate it.

In walks PCG, the PHP Code Generator, which is CodeIgniter based.  I have been using CodeIgniter for over a year now because I find it quite simple to use. PCG takes the simplicity one step further by allowing you to create the CRUD portion of you script in 5 easy steps:

Step 1: Settings

pcg1
Simply Name your project (Website Title)
Give the URL (Must be a fully qualified domain name, IPs don’t work, I tried)
Supply your admin login and password

Step 2: Design

pcg2
This is where you get to create your modules, it creates all the pages you need to complete the CRUM for each module.…

Continue reading