When Making links with Background images to keep text visible to search engines or text-to-speech applications we use Text indent about large negative values to…
Leave a CommentTutorials / Programming tips Posts
You can Configure the CodeIgniter to Dynamically distinguish between development, test and production servers, It’s Better to keep your Development, testing, and production Config options…
Leave a CommentIn general, we write all validation rules in Controllers, This is perfectly fine, but can lead to a large amount of validation code within your…
1 CommentCodeIgniter is a PHP framework, CodeIgniter has a number of helpers and libraries, which will reduce the development time and we can write more reliable…
41 CommentsCodeIgniter is a PHP framework, CodeIgniter has a number of helpers and libraries, which will reduce the development time and we can write more reliable and bugs free…
9 CommentsWe can pass multiple Callback function to array_map with use of anonymous function , just pass the anonymous function as arguments to array_map() function ,…
Leave a Commentyou can get base url of codeIgniter applicatoin with $this->config->base_url();, you can also call base_url(), but to use the function you need to load codeigniter…
Leave a CommentIn CodeIgniter you can get current page URL using CodeIgniter URL helper function current_url(). Now you knew how to get current page URL, then append…
4 CommentsIn this programming tutorial, you will learn page Redirection using PHP. you can use header() function in PHP or use meta to redirect to a…
Leave a CommentUsually, when we run a Yii website, the URL will have index.php after the hostname. To remove this in appache web server, we need to…
1 CommentI would like to explain about removing index.php from codeigniter based application urls with .htaccess.To hide “index.php” from the URL, add an .htaccess file to…
Leave a CommentWhile developing web applications, in some cases we have to check for array value existence in that situation we can easily check for the value…
Leave a CommentIn this tutorial, you’ll learn how to get current web page URL from your web browser address bar using PHP script. To get Current Page…
Leave a CommentThis Post is About Removing White space of array Members from the beginning and end of the given array. Here is the code.
Leave a CommentIncrement and Decrement Operators are common in many Languages, Increment Operator is represented by ++ Decrement Operator is represented by — Pre-increment or Pre-decrement: if…
Leave a Comment