Laravel is a web application framework created in PHP language. it is open-source framework. it provide functionality for building powerful and robust applications. it provided a structure that saves lots of time and plan for large applications to develop in laravel. Below I mentioning some steps to install laravel in Wamp server. Table of Contents […]
Author: Azhar Shaikh
how to turn off autocomplete for form’s input field in React JS?
I am explaining you, how to turn off autocomplete for form’s input field in React JS. here is very easy process to turn off autocomplete in input fields in form. I am giving some explanation to turn off separately input fields and other through form’s. Table of Contents – 1. Disable with Entire Form 2. […]
how to generate JSON file with read content from Google spreadsheet in php?
I am explaining you, how to generate JSON file with read content from Google spread sheet in php.. if you have any requirement to read Google spead sheet and generate JSON file or want JSON type content so this post is very userful to you. I am explaining, you can get all content from Google […]
how to calculate number of Age from date of birth in PHP?
I am explaining you, how to calculate number of Age from date of birth in PHP. if you want to show user’s age from date of birth so you can use this process and show Age in php. here I will use some function like date(), date_create() and date_diff() that need to used to calculate […]
PHP how to get all the keys of an associative array?
I am explaining you, how to get all the keys of an associative array in PHP. we need to use PHP array_keys() function to extract the keys in an associative array. Example : Output : Otherway, I will apply foreach loop so it will also show key and its related values. Example : Output : […]
How to get browser window width and height in Javascript ?
Hi Folks, I am explaining you how to get browser window width and height in Javascript . we can get dimensions of the browser window height and width peoperties using window object in javascript. window.outerWidth : using the javascript code. it will provide overall width of the browser window.window.outerHeight : it can provide overall height […]
How to merge two array into single array in php ?
I am explaining you, how to merge two array into single array in php. we can use array_merge() function in php code so that will merge two different array into single array.here I having two array called arrayfirst and arraysecond array, I will merge both array into single array with arraymerge new array. Example : […]
PHP How to check if a variable is null?
I am explaining you, how to check if a variable is null or not in PHP. I will check null values through is_null() function in PHP. Example : Output : Azhar ShaikhHello, Welcome to webdeveloperindia.in. I am a full-stack web developer. Email – [email protected] | Skype – azaruddin23. I have knowledge of PHP, Laravel, Magento […]
PHP how to generate random numbers?
I am explaining you, how to generate random numbers in PHP. I will use rand() function to generate random numbers. rand() function can able to use to generate a random number with specific range like starting number is 1 and ending number id 999 so it will generate random number in between. you can use […]
How to select all text content of input textarea in ReactJS
Today, I am explaining you, how to select all text content of input textarea in ReactJS. if you are working in ReactJS so this post in very useful to you. I will show you through some events like onClick, onFocus and useRef hook. I am explaining you three ways with use of e.target.select() method. Table […]