Web Development Starts Here…

Repeating and Scheduling MySQL Events

Posted by on Jan 15, 2012 in MySql, MySQL Events | 0 comments

Repeating and Scheduling MySQL Events

In earlier two posts we have learned to check for the Events status in MySQL server and then after we have learned to create a simple event, edit existing events, drop and rename evants.

Also in the second article we have checked that normal events will gets deleted once executed, these events also called as one time events. So in this case I have also explain the trick to preserve the Event in MySQL Server. But do you think is it good to keep the MySQL Event in MySQL Server even if it will not used more? So the question is when to preserve events?

Read More

Creating Simple Event with MySQL

Posted by on Jan 12, 2012 in MySql, MySQL Events | 1 comment

Creating Simple Event with MySQL

This is the second article of this series and I am going to cover creation of basic mysql events and check the status of the same.
If you are not sure what was covered in this series yet then you can have a look at the first article about MySQL Events.

Read More

Starting with MySQL Events

Posted by on Jan 11, 2012 in MySql, MySQL Events | 1 comment

Starting with MySQL Events

Today I am going to start the series of the post. This series is about Basics of MySQL Events, Creating and Altering the Events, Managing the Events and all that.
This article is about to cover Basics of MySQL Events.

Read More

Why We Clone the Objects in PHP

Posted by on Jan 8, 2012 in Code Snippet, PHP | 1 comment

Why We Clone the Objects in PHP

Today one of my team member had asked that, “Why we clone the Objects in PHP?”.
I was surprised with the question for few seconds.
Then I have made a quick search and found the answer for the same.

Read More

PHP Session Save Path

Posted by on Jan 5, 2012 in Code Snippet | 1 comment

PHP Session Save Path

This is the very useful function when you want to get or set your session save path. This function takes only one parameter which is option.

This function will used to both set and get the session save path.

Read More