<?PHP include("PHPLiveX.php"); // Your PHP Function function generateRandomCode($length){ sleep(1); // Function is slowed to show you the process exactly. $chars = array("1","2","3","4","5","6","a","b","c","d","e","f"); $code = array_rand(array_flip($chars), $length); return implode($code); } // Necessary PHPLiveX Codes $ajax = new PHPLiveX(array("generateRandomCode")); $ajax->Run(); // Must be called inside the 'html' tags. ?>
Try It Yourself!