Nitish Kumar
Recent Posts by Nitish Kumar
How to Create a Website in 2022 — Easy and Complete Guide
In this post, I will give you a step-by-step guide on how to create a website in 2020. You can follow these five steps to create your own website today.
MDDHosting Review 2021 — My Honest Experience
This post provides a detailed MDDHosting review based on my own real life usage. I have included all the necessary information that you should know before choosing an appropriate plan on the website.
PHP String Functions (All on One Page)
addcslashes() — Quote string with slashes in a C style addslashes() — Quote string with slashes bin2hex() — Convert binary data into hexadecimal representation chop() — Alias of rtrim chr() — Generate a single-byte string from a number chunk_split() — Split a string into smaller chunks convert_cyr_string() — Convert from one Cyrillic character set to […]
How can I Delete an Element from an Array in PHP?
Let’s say you have an array and you want to delete one or more elements from that array using PHP. Maybe you have to delete an element with a specific value or maybe you have to delete multiple consecutive elements. In this article, you will learn about different inbuilt PHP functions that can help you […]
Random Number Functions in PHP
Random Number Functions Functions in PHP Function Name Function Description getrandmax() Show largest possible random value mt_getrandmax() Show largest possible random value mt_rand() Generate a random value via the Mersenne Twister Random Number Generator mt_srand() Seeds the Mersenne Twister Random Number Generator rand() Generate a random integer srand() Seed the random number generator PHP getrandmax() […]