codeigniter is a very powerful yet very simple php framework to learn and implement. codeigniter is simple and elegant toolkit to create full-featured web applications. codeigniter is very fast growing and widely used open source php framework which is used to develop best web based applicationsusing php. i bet you love to implement this framework for you small medium as well as .. .. ..
workaround for sessions on cookie disabled machines in php
in php, will sessions work on cookies disabled computers ? the answer is “no”. because, server cookie is a session or we can say that session is also a cookie on the server. for session to work, cookies on server as well as on client browser should be enabled. read the rest of this entry .. .. ..
Trimming Completely using PHP Regular expressions
hello friends, is your trimming method is taking care for special characters ? you might be using some trimming for some of the special characters but what about the rest ? for you here is a simple function which will trim the string entirely and results only the pure string function puretrim($input) { // this allows only alphabets numerals and .. .. ..
Calculate Page Execution time in PHP
for those people who want to give users that in how many seconds actually your web page loaded completely. this script will be useful for you. there are so many ways to do this ( as usual ) but the classic approach would be step 1 : make a note of the time when your page get starts step 2: make a note of the time at the end of your total page execution step 3 : step 2 – .. .. ..
Text Area Values into Array in PHP
if you want to split up the total text area content into array based on the row , here is simple solution to convert textarea field value into array in php. $total=$_post["textarea"] $keyarr=explode("\n",$total); // in order to process this array values here is the code foreach($keyarr as .. .. ..
How to Upgrade Your Server PHP Version to latest stable PHP Version using WHM
to upgrade the php version of your server, there is no need to contact tech support and raise a ticket which is billable you yourself can upgrade your server’s php version to latest php version if you have access to whm i.e web host manager let’s see how you can do this your own. step 1: login to whm step 2: look for easy apache or apache update under .. .. ..
Displaying Images saved in Database of blob datatype in JSP
most of the times, we need to display images from database, this article will guide you to display images saved in database when we are saving images to the database, its a better option to save the image type also, it will be helpful when we are retreiving image from database, it is fine when we are handling or saving only one type of image format i.e .. .. ..
How to Install Openfire chat server as service
we were looking for a open source chat server for our office, then i came across openfire chat server. i personally suggest openfire with pandion as chat client is best suitable for small companies. you can download openfire from http://www.igniterealtime.org/downloads/index.jsp after installing openfire, you have to manually make the chat server as service so that, you can avoid .. .. ..
