
Search In
I want to generate 5 digit sequential serial number . For example: starting serial number must be 00000 then next will be 00001, 00002............. 00011 like this .
To generate random number of specific length let the length be 10
we write
<?php
$random_number = rand(1000000000,9999999999);
echo $random_number;
?>

In WordPress terminology:
A WordPress Theme is a collection of php, css & js files that work together to produce a webpage with an underlying unifying design for a weblog. These files are called template files. A Theme modifies the way the site
Hello Friends,
If you are looking to generate unique random string of numeric numbers. Please follow the below code for the same.
<?php
$uniqueKey = generateUniqueKey();
/**
* generate unique key
* @return unique key
*/
public function gener
PHP is a scripting language is derived from C and C++, the syntax of PHP is similar to C++ and it supports object-oriented applications. So, developers find it easy to learn and create websites. The PHP built websites can be integrated with
Hello friends,
Today we learn how to generate a random number in PHP. In PHP, following function are used to generate random numbers.
rand():
rand() function is used to display a random number.
Syntax:
rand();
Or you can also write the syn
A generator is the simple and an efficient way to write your code in the form of the iterator.
PHP generators is the simple way to write your code that use the foreach loop to repeat your data set of array, without building that array in the memory,
Hello Reader's you want to generate the 8 digit password with random characters (lower case, upper case and number), Then this function will work for you.
Lets see how genrate the password :-
$ASCIRangeFrom = 48;
$ASCITo = 122;
$MakeRandomInText
Hi all,for setting the amazon product API you will need amazon associates account and AWS account. Create the account using this link: http://aws.amazon.com/. After registration, generate `AWS_API_KEY` & `AWS_API_SECRET_KEY`.
Download the API fr
Theme in Cakephp 3.x
Hello friends welcome to findnerd. Today I am going to tell you how to install / create theme in Cakephp 3. Before starting with theme, let us understand what is a theme and why it is used in Cakephp. Themes are used on websites
