We can increase it in different ways based on server Method 1: It will work in most servers. Add this function in top of page.ini_set(‘max_execution_time’, … increase execution time in phpRead more
All
freelance job sites
www.odesk.comwww.guru.comwww.freelancer.comwww.ifreelance.comwww.getfreelancer.comwww.freelancers.net many more are there…….
Create csv file in php
$data = “Id, FirstName, LastName, Email, Phone, ZipCode”.”n”; $data .= “1,’Test1′,’Test2′,’Test@gmail.com’,’546435′,’10001′”.”n”; $myFile = “userinfo.csv”; $fh = fopen($myFile, ‘a’) or die(“can’t open file”); fwrite($fh, $data); fclose($fh);
difference between curl and file_get_contents
file_get_contents – It is a function to get the contents of a file(simply view source items i.e out put html file contents). curl – It … difference between curl and file_get_contentsRead more
Generate random unique value in php
<?php function random_code() { $string = “ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz0123456789″; $randval = ” ; for($i = 0;$i <= 10;$i++) { $num = rand() % 62; $tmp = substr($string, … Generate random unique value in phpRead more