Unlink File in Codeigniter
You can delete files from the server with PHP’s file system function unlink() which will delete or remove the files. It can remove all type
You can delete files from the server with PHP’s file system function unlink() which will delete or remove the files. It can remove all type
In this post, I want to explain how to redirect the subdomain to a subfolder with .htaccess. I implemented this for demos.arjunphp.com,lab.arjunphp.com and downloads.arjunphp.com I
Here is the simple tutorial On Twitter Like Login Box Show and Hide effect with JQuery, You can achieve this with fewer lines of code
This post is about Automatic Copyright Year Update, Almost nowadays most of the website include a copyright declaimer a the bottom of the page in
I hope you like this Post, Please feel free to comment below, your suggestion and problems if you face - we are here to solve
We can find absolute path in different ways on a web server using PHP, I am showing some of that practices here echo realpath(dirname(__FILE__)); //
CSS3 allows web designers to specify multiple background images for box elements, using nothing more than a simple comma-separated list. Multiple backgrounds are supported by
Today’s post is about password validation in PHP using Regular Expressions. Here is the small use full Password Validation function. Password Regular Expression Pattern The
Here is the simple and elegant solution to open all .pdf files in new window with jQuery. I hope you like this Post, Please feel
Using the below simple html markup , you can auto refresh or reload the page. The following refreshes the page every 60 seconds. I hope
Using the below script, you can auto refresh the output of your PHP script in a browser. Place the code on the first line of
This post is about data retrieving from MySQL database table using PHP. The bellow PHP script will give you Unordered list format output. Before doing
This post is about removing empty elements from the given array using PHP. Here is example $test_array = array('foo', 'bar', '', 'sleep', '',null,'arjun'); $test_array =
The rewrite module is not enabled by default in Apache’s configuration settings. although you can enable it manually by doing very few simple steps: 1.
I always use this Base Controller for My CodeIgniter App Development, It makes my app portable and flexible.We can define all Global settings in Base