Easy Tutorial for Learning Code Igniter

Easy Tutorial for Learning Code Igniter

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  .. .. ..

Pages: 1 2 3

Created By : adrevol

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 .. .. ..

Created By : adrevol

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 .. .. ..

Created By : adrevol

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 – .. .. ..

Created By : adrevol

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 .. .. ..

Created By : adrevol

Make a Sortable table According to the column data on each column

Make a Sortable table According to the column data on each column

if we are making an reporting interface, it will be very very useful if we can provide sortable table on each column. if  the sort  happens  with a simple click on column names with out any  server requests ??  yes,  it is perfect . read the rest of this entry .. .. ..

Created By : adrevol

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 .. .. ..

Created By : adrevol

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 .. .. ..

Created By : bhaskar

How to Install Openfire chat server as service

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 .. .. ..

Created By : adrevol