The “Cannot read properties of undefined (reading ‘blocklist’)” error in Tailwind CSS (PostCSS build) usually happens due to one of the following issues: Possible Causes & Fixes 1. Tailwind CSS Version Mismatch If you are using an outdated version of Tailwind CSS or PostCSS, update them to the latest stable versions: “`bash npm update tailwindcss […]
See MoreCategory: HTML
Experts PHP web programming blog focuses on all web development tutorial PHP & MySQL,LARAVEL,XML,WORDPRESS, HTML, CSS, AJAX, jQuery, Web Demos…
How to Use metaphone() Function in PHP 8.1 and 8.2 with Example?
Hello Friends Today, through this tutorial, I will tell you How to Use `metaphone()` function using PHP, PHP 8, PHP 8.1, PHP 8.2 With Example. In PHP, the `metaphone()` function is used for phonetic comparison of strings. It generates a key based on the pronunciation of a word which can be used for comparing words […]
See MoreRedirect Url to Another Page With HTML & JavaScript
You can redirect a URL to another page using HTML or JavaScript. Here are two methods to achieve this: Method 1: Using HTML `<meta>` Tag You can use the `<meta>` tag with the `http-equiv` attribute set to `”refresh”` to achieve a redirect in HTML. Here’s how you can do it: redirect.html <!DOCTYPE html> <html lang=”en”> […]
See MoreHow to Download Image & Gif From Gifer.com?
Gifer Downloader – Download Gifer videos in MP4 HD quality & 720P format using Gifer Gif Downloader. Gifer image download, Gifer Video Download, Gifer Gif Download is a free online Gifer downloader tool. DOWNLOAD This is an online free Gifer.com gif and photo downloader tool, from here you can easily download small videos of Gifer […]
See MoreHow to Take Screenshot of a Website From Url Using R?
Hello Friends Today, through this tutorial, I will tell you How to Take Screenshot of a Website From Url Using R? While R is excellent for data analysis and visualization, it ‘doesn’t have built-in capabilities for directly interacting with web pages’ like taking screenshots. However, several libraries offer workarounds: Using the `RSelenium` package (use with […]
See MoreHow to Take Screenshot of a Website From Url Using Ruby?
Hello Friends Today, through this tutorial, I will tell you How to Take Screenshot of a Website From Url Using Ruby? In Ruby, you can use the `watir` gem along with a web driver like `headless` to take a screenshot of a website. Here’s an example Ruby script: First, make sure you have the required […]
See MoreHow to Take Screenshot of a Website From Url Using Perl?
Hello Friends Today, through this tutorial, I will tell you How to Take Screenshot of a Website From Url Using Perl? In Perl, you can use the `WWW::Mechanize` module along with `Image::Magick` to capture a screenshot of a website. Make sure you have these modules installed. You can install them using the following commands: cpan […]
See MoreHow to Get Youtube Video id From Url Using Perl?
Hello Friends Today, through this tutorial, I will tell you How to Get Youtube Video id From url Using Perl Script Code? Here’s the Perl code to extract the YouTube video ID from a URL, using regular expressions and the `LWP::Simple` module: use LWP::Simple; use strict; use warnings; sub get_youtube_video_id { my ($url) = @_; […]
See MoreHow to Get Facebook Video id From url Using Perl?
Hello Friends Today, through this tutorial, I will tell you How to Get Facebook Video id From url Using Perl Script Code? To extract the video ID from a Facebook video URL in Perl, you can use regular expressions. Here’s an example: use strict; use warnings; sub get_facebook_video_id { my ($url) = @_; # Define the […]
See MoreHow to Generate 6 Digit Unique Random Number R?
Hello Friends Today, through this tutorial, I will tell you how to generate a 6 digit Unique random number in R? While R doesn’t have a built-in function specifically for generating random numbers within a specific range like 6 digits, you can achieve this using different approaches: Using `sample` and ensuring 6 digits. generate_six_digit_number <- […]
See MoreHow to Generate 6 Digit Random Number Ruby?
Hello Friends Today, through this tutorial, I will tell you how to generate a 6 digit Unique random number in Ruby? Here are two ways to generate a 6-digit random number in Ruby: Using `rand` and string manipulation:- def generate_six_digit_number # Generate a random integer between 100000 and 999999 (inclusive) random_number = rand(1000000) + 100000 […]
See MoreHow to Generate 6 Digit Random Number C++?
Hello Friends Today, through this tutorial, I will tell you how to generate a 6 digit Unique random number in C++. Here are two ways to generate a 6-digit random number in C++: Using `rand()` and string manipulation. #include <iostream> #include <cstdlib> #include <string> int main() { // Seed the random number generator (optional for […]
See MoreHow to Generate 6 Digit Random Number C?
Hello Friends Today, through this tutorial, I will tell you how to generate a 6 digit Unique random number in C?. In C, you can use the `rand` function to generate random numbers. Here’s an example of generating a 6 digit unique random number: #include <stdio.h> #include <stdlib.h> #include <time.h> int generateRandom6DigitNumber() { return rand() […]
See MoreHow to Generate 6 Digit Random Number Typescript?
Hello Friends Today, through this tutorial, I will tell you how to generate a 6 digit Unique random number in TypeScript. While generating a truly unique random number across all users and sessions is impossible in JavaScript due to its client-side nature, you can achieve a ‘high degree of uniqueness’ by combining multiple techniques: Using […]
See MoreHow to Generate 6 Digit Random Number Matlab?
Hello Friends Today, through this tutorial, I will tell you how to generate a 6 digit Unique random number in MATLAB. Generating a truly unique random number in MATLAB is challenging as it relies on factors like the computer’s internal state and seed values, which can lead to repetitions for different runs. However, you can […]
See MoreHow to Generate 6 Digit Random Number Scala?
Hello Friends Today, through this tutorial, I will tell you how to generate a 6 digit Unique random number in Scala. Here’s how to generate a 6-digit random number in Scala. Using `scala.util.Random` and string manipulation. object RandomNumberGenerator { def generateSixDigitNumber(): String = { // Create a Random object val random = scala.util.Random // Generate […]
See MoreHow to Generate 6 Digit Random Number Rust?
Hello Friends Today, through this tutorial, I will tell you how to generate a 6 digit Unique random number in Rust. In Rust, you can use the `rand` crate to generate random numbers. Here’s an example of how you can generate a random 6-digit number: First, add the `rand` crate to your `Cargo.toml` file: [dependencies] […]
See MoreHow to Generate 6 Digit Random Number Perl?
Hello Friends Today, through this tutorial, I will tell you how to generate a 6 digit Unique random number in Perl. Here are two ways to generate a 6-digit random number in Perl: Method 1: Using `rand()` and string manipulation. use strict; use warnings; sub generate_six_digit_number { # Generate a random integer between 100000 and […]
See MoreHow to Generate 6 Digit Random Number Java?
Hello Friends Today, through this tutorial, I will tell you how to generate a 6 digit Unique random number in Java. Here’s how to generate a 6-digit random number in Java: Using `Random.nextInt(upperBound)` and ensuring 6 digits. public class RandomNumberGenerator { public static int generateSixDigitNumber() { // Create a Random object Random random = new […]
See MoreHow to Generate 6 Digit Random Number Elixir?
Hello Friends Today, through this tutorial, I will tell you how to generate a 6 digit Unique random number in Elixir. Here are two ways to generate a 6-digit random number in Elixir. Method 1: Using `:rand.uniform` and string manipulation:- defmodule RandomNumber do def generate_6_digit_number do # Generate a random integer between 100000 and 999999 […]
See MoreHow to Generate a 4 Digit Random Number in Rust?
Hello Friends Today, through this tutorial, I will tell you how to generate a 4-digit random number in Rust. Here’s how to generate a 4-digit random number in Rust: use rand::Rng; fn main() { let mut rng = rand::thread_rng(); // Generate a random number between 1000 and 9999 (inclusive) let random_number: u32 = rng.gen_range(1000..=9999); println!(“Generated […]
See MoreHow to Generate a 4 Digit Random Number in Perl?
Hello Friends Today, through this tutorial, I will tell you generate a 4-digit random number in Perl. Here’s how to generate a 4-digit random number in Perl: use strict; use warnings; # Generate a random floating-point number between 0 (inclusive) and 1 (exclusive) my $random_float = rand(); # Multiply by 10000 and cast to integer […]
See MoreOdd Even Number Generate Using Matlab Code
If you want to generate a sequence of odd and even numbers in MATLAB, you can use a loop. Here’s an example code that generates a sequence of 10 numbers, alternating between odd and even: % Initialize an array to store the numbers numbers = zeros(1, 10); % Generate alternating odd and even numbers for […]
See MoreHow to Generate a 4-digit Random Unique Number Using Matlab?
Hello Friends Today, through this tutorial, I will tell you how to generate a 4-digit random unique OTP number using MATLAB Program? Here’s how to generate a 4-digit random unique number using the MATLAB program: function unique_otp = generateUniqueOTP() % Define pool of digits pool = 0:9; % Generate random number with leading zeros random_number […]
See MoreHow to Generate a 4-digit Random Unique Number Using Ruby?
Hello Friends Today, through this tutorial, I will tell you how to generate a 4-digit random unique OTP number using Ruby Program? Here’s how to generate a 4-digit random unique otp number using Ruby: Using `loop` and `SecureRandom`:- require ‘securerandom’ def generate_unique_otp # Loop until a unique number is generated loop do otp = SecureRandom.random_number(10000..9999) […]
See MoreHow to Generate a 4-digit Random Unique Number Using R?
Hello Friends Today, through this tutorial, I will tell you how to generate a 4-digit random unique OTP number using R Language Program? In R, you can generate a 4-digit random OTP (One-Time Password) using the `sample` function. Here’s an example: # Set the seed for reproducibility (optional) set.seed(123) # Generate a 4-digit random OTP […]
See MoreHow to Generate a 4-digit Random Unique Number Using Kotlin?
Hello Friends Today, through this tutorial, I will tell you how to generate a 4-digit random unique OTP number using Kotlin Language Program? Here’s how to generate a 4-digit random unique OTP number using Kotlin: fun generateUniqueOTP(length: Int): String { val charPool = “0123456789” // Define the pool of characters for the OTP val random […]
See MoreHow to Find Peak Element in the Array in Kotlin?
Hello Friends Today, through this tutorial, I will tell you How to Find Peak Element in the Array in Kotlin Language Program? This approach iterates through the entire array and compares each element with its neighbors. If an element is greater than both its neighbors, it’s a peak element. fun findPeakElementBruteForce(arr: IntArray): Int { if […]
See MoreFind the Minimum and Maximum Element in an Array Using TypeScript
Here are two ways to find the minimum and maximum element in an array using TypeScript: 1. Using Math.min and Math.max: function findMinMax<T>(arr: T[]): [T, T] { const min = Math.min(…arr); const max = Math.max(…arr); return [min, max]; } const numbers = [1, 5, 2, 8, 3]; const [minNumber, maxNumber] = findMinMax(numbers); console.log(`Minimum number: ${minNumber}`); […]
See MoreFind the Minimum and Maximum Element in an Array Using Ruby
Hello Friends Today, through this tutorial, I will tell you find the minimum and maximum elements in an array using Ruby. This methods to find the minimum and maximum elements in an array using Ruby: Using `min` and `max` methods: # Sample array numbers = [5, 2, 8, 1, 9] # Find minimum and maximum […]
See MoreFind the Minimum and Maximum Element in an Array Using Swift
Hello Friends Today, through this tutorial, I will tell you Find the Minimum and Maximum Element in an Array Using Swift. Swift offers multiple ways to find the minimum and maximum element in an array: 1. Using `min()` and `max()` functions: These functions are the simplest and most concise way to find the minimum and […]
See MoreFind the Minimum and Maximum Element in an Array Using Kotlin
You can find the minimum and maximum elements in an array in Kotlin using the following code: fun findMinAndMax(arr: IntArray): Pair<Int, Int> { if (arr.isEmpty()) { throw IllegalArgumentException(“Array is empty”) } var min = arr[0] var max = arr[0] for (element in arr) { if (element < min) { min = element } if (element […]
See MoreConvert from Kilometers to Miles Using Laravel with HTML
Hello Friends Today, through this tutorial, I will tell you Convert from Kilometers to Miles Laravel script code with html. Here’s an example of converting Kilometers to Miles using Laravel with HTML: Controller (app/Http/Controllers/ConverterController.php): <?php namespace App\Http\Controllers; use Illuminate\Http\Request; class ConverterController extends Controller { public function index() { return view(‘converter’); } public function convert(Request $request) […]
See MoreSnapTwitter.com – Snap Twitter Downloader
SnapTwitter.com video & gif Downloader is an Online tool to download any videos from twitter.com. Download snap twiiter videos in mp4 HD quality format.
See MoreHow to Get img src value with php?
Hello friends, today I will tell you through experts php tutorial how you can get img src values Using php program. So let’s try to understand step to step with example. index.php <?php $html = ‘<img id=”12″ border=”0″ src=”/images/img.jpg” alt=”Image” width=”100″ height=”100″ />’; $doc = new DOMDocument(); $doc->loadHTML($html); $xpath = new DOMXPath($doc); $src = $xpath->evaluate(“string(//img/@src)”); […]
See MoreHow to Create Prime Number calculator Using PHP Code?
Hi friends, today I will tell you through this blog how you can create prime numbers calculator with the help of PHP Script code. So let’s go guys. How to Create Prime Number calculator Using PHP Code?I will try to tell you through php. I will try to explain you in 2 steps. Step 1:- […]
See MoreHow to Redirect Domain from HTTPS to HTTP Using .htaccess?
Hello friends, today I will tell you through this post how you to Redirect Domain from HTTPS to HTTP Using .htaccess. So let’s go. Add the code below to your website .htaccess file and then save it. RewriteEngine On RewriteCond %{HTTPS} on RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
See MoreHow to Remove all Question Mark From String Using JavaScript?
Hello friends, today I will tell you through this tutorial how you can easily remove all the question marks from your string content using javascript or jquery. This tutorial will try to understand you step to step. So let’s go. extract question mark from string by javascript with demo, remove question mark (?) from string […]
See MoreHow to Get HTML Source Code by URL Using PHP?
Hello friends, today I will tell you through this article how you can get the html source code of any website through php. So let’s go. Extract HTML Source Code of a url using php, How to fetch html source code of a any website from url using php?, fetch html source code by url […]
See MoreHow to Create Scientific Calculator Using HTML, JavaScript and CSS?
A calculator is an Electronic Hardware Device that is capable of doing very Mathmetical Calculations such as addition, multiplication, division and subtraction. But we are going to talk about How we Create a Scientific Calculator through Javascript. Let’s try to know step to step. Keywords :- Scientific Calculator, Simple Scientific Calculator Create using HTML, JavaScript […]
See MoreHow to Extract img src and alt value From HTML using PHP?
Hello Guys i will tell you today through Experts PHP Tutorial, How You Can Extract the src value or alt value of the img tag of any HTML Page of PHP. i will tell you step by step. So let’s go. First of all you create a php file. You can name that file according […]
See MoreReturn Longest Word From an Given Array of Strings Using JavaScript
Find Longest Word in a String With JavaScript, Find the longest word in an array JavaScript, How to find the longest word in a string using JavaScript,Finding the Longest Word In a Sentence With JavaScript Hello Guys, i will tell you today through expertsphp tutorial that how will you fetch the words charecter with the […]
See MoreCreate Percentage Calculator Using JavaScript
Create Percentage Calculator by JavaScript, Using JavaScript Calculate Percentage Calculator, Calculate JavaScript Percentage in JavaScript Hello Friends, Today I will tell you through this tutorial how you can calculate the percentage through javascript. So let’s go let me first tell you that people use percentage tools to calculate exams marks. But through this tutorial, we […]
See MoreInclude Multiple HTML File Into Single HTML File
How to add Multiple Pages in Single HTML file Using JavaScript, Multiple HTML Files In One HTML File Using JavaScript Hi guys today i will tell you through this tutorial that how do you include multiple html files in javascript in only one file? I will tell you today by step by step through this […]
See MoreHTML Frames
A webpage can be divided into multiple sections. You can also call these sections as HTML frames. These sections are independent of each other. Each section represents a different webpage. Simply put, one webpage can divide into several sections and show other webpages in those sections. In this way many other webpages can be displayed […]
See MoreAdd Remove Multiple Input Fields Dynamically Using Jquery
“Add Remove Multiple Input Fields Dynamically Using Javascript,Dynamically Add Remove Multiple Input Fields with Jquery,Create Add/Remove Multiple Dynamically Input Fields in Javascript or Jquery” Hello friends, today I will tell you through experts php tutorial that how to use dynamic multiple input fields in jquery. Step by step You will be explained through this tutorial. […]
See MoreHow to Create GST Calculator using Javascript or Jquery?
“Create GST Tax Calculator in Javascript, How to calculate GST using JavaScript Code, Create Auto Calculate GST in Javascrip or Jquery, Calculate GST Function using Javascript” Today I will tell you how you can gst calculate by javascript code. The full form of GST is Goods and Services Tax. Today I will tell you how […]
See MoreHow to Create Facebook App ID and App Secret?
“How To Get An App ID and Secret Key From Facebook, How To Create Facebook App ID For Website, Create a Facebook App ID and App Secret, Facebook App Id and App Secret Id,How to Create Facebook App, App ID, and App Secret” Facebook created by App Id and Secret Id are used in many […]
See MoreHow to Download Videos, Gifs and Images from Pinterest.com
Hi friends, today, I will tell you through this tutorial how you can download video images and gifs from printres.com website. You will tell step by step. First of all, you go to the website and you go to the video that you like. Copy the URL of this Video.I have given some video links […]
See MoreMysql Database
MySQL server stores data in rows form. These rows are stored in tables. All tables are stored in the databases. In this way you can say that database MySQL is the primary unit of data representation and storage. Let us now see how the databases in MySQL are created and used. Create Databases To create […]
See MoreIntroduction to HTML Tables
HTML Tables You use tables to represent any data in a structured form. By adding tables to your webpage, you can make it even more structured toward it. To create tables in HTML, you use <table> tags. This tag has a sub tag called <tr> table row tag. <tr> tag also has a sub tag […]
See MoreUSAToday Video Downloader
Download USA Today videos easily and quickly in MP4, 3GP and other formats. Download videos at the best quality with high download speed using our free video downloader tool. Download!
See MoreHow to Remove .html extensions from URL?
Today we will talk about how to remove the .html extension from url. This is your html website url. https://www.expertsphp.com/how-to-remove-html-extensions-from-url.html But you want to convert it to https://www.expertsphp.com/how-to-remove-html-extensions-from-url url. We use the .htaccess file to remove the .html extension. So let’s go and I’ll explain you with the code. To remove the .html file, write […]
See MoreCreating List in HTML Language
Creating List in HTML A list in HTML start with a tag identifying the type of the list (<UL>, <OL> or <DL>) and each item of that list start with <LI> tag to denote the beginning of the list item. These tags have some attributes to design a desired list.Here we describe creating lists of […]
See MoreHTML Link
HTML Link we use the tag <A>, which stands for the word anchor.This is a container element.The text between opening <A> tag and closing </A> tag is called the hypertext link. For example, suppose you want to create a link to a document ‘My new document.html’ in the current directory.This will be done as follows: […]
See MoreHTML Inserting Table
HTML Inserting Table So for you learnt making row web pages from top to bottom.But HTML provides facilities to organise HTML elements into grids (i.e. cells or a table) on the web pages.This features may be utilised in making web pages very attractive and compact. Basic Table Tags The HTML code for a basic table […]
See MoreInserting Image Files in HTML Languauge
Inserting Image Files you can include images in your HTML document, which will be displayed in the web page created by that document. Browsers can display images stored in proper format in files with .JPG(Joint Photographic Group), .JPEG(Joint Photographic Experts Group), .GIF(Graphics Interchange Format), .BMP(Bitmap) or .XBM(X Bitmap) extention. An image is placed in the […]
See MoreHR Tag
HR Tag This tag provides you the facility of drawing horizontal rulers or lines to separate various parts of your web page. The horizontal line produced with this tag is drawn across the width of the browser window in proportionate size.By default the rule is aligned center. Size and Width Attributes:- This tag has two […]
See MoreCENTER Tag
CENTER Tag You can also align a portion of text or any thing else to the centre of the browser window by enclosing that text within the CENTER container, i.e. between tag pair <CENTER> and </CENTER>. For example, if you give <CENTER>This text will be aligned centrally. </CENTER> in the code, then the text ”This […]
See MoreParagraph Tag
<P> container is used to create a paragraph of text. Anything placed within this container is treated as a single paragraph. <BR> tag may also be used within this container. Each paragraph is displayed leaving a blank line before it, which is other than the line break created by <BR> tag. By default the text […]
See MoreHeading Tag in HTML
There are six levels of heading numbred 1 to 6 available with HTML. Corresponding tags are named H1 to H6, in which H1 tag is the largest.
See MoreWhat is HTML?
introduction you are now aware of the wonderful world of internet.It has a vast collection of information on almost all the subjects and services.
See More