How To Validate The Url Using Javascript
To split a string by the last dot, you have to first get the index position of the last dot using the lastIndexOf() method. HTML PART :- Javascript Code…
Zabbix Training Course & Official Master Certification Program
What is Zabbix? Zabbix is an open-source monitoring tool used to track the status, health, and performance of networks, servers, applications, and other IT assets. It enables…
PHP | Difference between array_slice and array_splice
Arrays in PHP are variables that can holds multiple values. There are many methods for accessing and manipulating arrays. The methods array_slice () and array_splice () are…
PHP | array_merge() and array_merge_recursive() functions
PHP array_merge() This array function is used to merge or combine multiple arrays into one new single array. In simple if their are two arrays as array1…
PHP | Multidimensional arrays
Multi-dimensional arrays is a type of arrays which stores an another array at each index instead of single element. In simple words, multi-dimensional arrays as array of…
PHP | Strings & Built-in String functions
String is a stream or collection of character which is written in quotes. For example: – ‘D’ is taken as Character, and whereas “DevOpsschool” is a String….
PHP | Data Types
In PHP, Data types are used to declare one particular type of data as in all programming languages. Data Types define the type of data a variable…
Why PHP Is Still So Important for Web Development?
PHP (Hypertext Preprocessor) is a general-purpose scripting language that can be used to develop dynamic websites. It was from the first server-side languages that could be embedded…
Performing CRUD operation through php mysql
CRUD is an acronym for Create, Read, Update, and Delete. CRUD operations are basic data manipulation for database. In this we create a simple PHP application to perform all these operations…
Registration Form using PHP.
Creating a registritaion form in php using $_POST method First we create a html page containning form in it with the helps of form tag. Add some…
Complete guide of Golang certification courses, tutorials & training
Golang is an in-demand programming language, especially for people working with Google products. Go is used by many large companies, such as Uber Medium, Dropbox, Salesforce, Netflix,…
Complete guide of Selenium certification courses, tutorials & training
Selenium automates web browsers. It is most famous for enabling rapid, repeatable web-app testing, which allows developers to ship new releases faster and with confidence. This is…
php version (7.2.34) does not satisfy that requirement.
When i download the Laravel project from Github and setup project i run composer update its showing this types of error. Let open editor and run below….
How to add jquery modal popup in Laravel PHP?
In this tutorial i’m going to implement popup modal in our pages. Define below. It’s a very easy you have to just copy below code and run…
jQuery UI Datepicker | Add Datepicker to Input Field using jQuery UI
In this tutorial im going to learn hwo to add DatePicker in input field using jQuery. You can use this DatePicker code in your own page. So…
Define jQuery with Examples?
What is jQuery? jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much…
Print multiplication table by using for Loop
What is Loop? Any Repeated task more than one time that is called Loop. In a loop structure, the loop asks a question. If the answer requires…
Form Validation in JQuery with Example
In this tutorial i’m going to implement form validation using Jquery in PHP. What is FormValidation? Form validation is a process of confirming the relevant information entered…
How To Install XAMPP on Windows 10
What is XAMPP? XAMPP is a free and Open-source cross-platform web server it’s eaiser for testing and deploying by creating a local web server. It is completely…