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