
Search In
Employee monitoring includes the processes of monitoring, collecting information about, and keeping tabs on the activities of employee at the workplace. It plays an important role in improving productivity and optimizing business capabilities. In thi
With around 1.7 billion users and which are growing day by day, Facebook has now come a very important medium to promote your app and website world wide.
Facebook along with social sharing provides many other tools and options
Delete a file Using Php
In PHP, we can use unlink() function to delete a file from given folder/path.
unlink() returns boolean value. It returns TRUE on success and FALSE on failure.
Syntax:
unlink($targetFilename);
Arg:
1. $targetFilename i
In any project validation plays an important role.In laravel 4.x we have validation class which is used to
validating data and validating error message.
Basic Validation Example:
$validator = Validator::make(
array('name' => 'Dayle'),
a
Businesses of all sizes cutting across industry segments are always concerned about various compliances that they must ensure for running the business smoothly. Some new regulations keep on coming up at regular intervals that necessitate different
What is namespaces
PHP introduce NAMESPACES in 5.3 version. Namespaces are virtual container/directory to organize code structure. In php we can not share same name for two classes. For example if you are using user management plugin for your proje
Stack View is a class that allows you to layout views either a vertical or horizontal manner. It saves us from use of constraints in auto layout. We simply embed our views to StackView to make it work. Stack View manages the layout of its subvie
MySQL comes with a variety of storage engines. Each and every storage engine has some particular behavior and traits. It is very much important to know about these engines in order to create a well designed database.
MySQL stores each database(also c
Having a blog is no longer something odd for most people. In fact, the number of bloggers grew significantly over the last years. Therefore, the competition on the market is incredibly strong. You can no longer be good enough. Unless you cr
Lets consider a task on hand , we need to add a contact us form which takes in few inputs from the user and on submission mails the details to the administrator. The requirement says that the mail should be sent using Gmail SMTP client. The solution
