How to add multiple images into database using mysql and php
// start multiple image $stmt = $conn->prepare("INSERT INTO cat_images (img_url, cat_id) VALUES (?, ?)");$stmt->bind_param("si", $imagePath, $cat_id);$uploadedImages = $_FILES['images']; $cat_id = $conn->insert_id; foreach ($uploadedImages['name'] as $key...
Email does not comply with addr-spec of RFC 2822. Laravel
This error message indicates that the email address you're attempting to use doesn't adhere to the specific formatting guidelines outlined in RFC 2822. This RFC is a fundamental standard for email addresses, defining the correct syntax and structure. Common Reasons...
How to Make Login and Registration in Laravel for Beginners
Steps: use below command Step1: laravel new project cd project composer require laravel/ui --dev Step2: php artisan ui bootstrap --auth php artisan migrate instead of php artisan make:auth ( which works for Laravel 5.8 and older versions ) Don't forget to use below...
How to get the value of selected radio button using jQuery
Just use below code and modified according to your need. Note: this is very useful for COD and Prepaid charge addition using javascript, jquery, PHP <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script> <br><br><br>...
AWS
Steps: AWS puttyubuntu sudo su apt update apt install apache2 service apache2 start service apache2 status you will see a ubuntu on your ip (/var/www/html/index.html) cd /var/www/html/ ls now you see index.html now remove this index.html file rm index.html ls install...
How to Display Fields in a Single Column on Mobile – WPForms
Certainly! If you want to convert a multi-column form layout to a single column when viewed on mobile, follow these steps using WPForms: Creating a Multi-Column Form Layout: Start by creating a form with multiple columns. For example, let’s create a two-column layout...
How to show two columns on Contact Form 7
I've wrote about creating a two column form in Contact form 7. Now in this tutorial we will see on how to produce a responsive two column form. The form will be in two columns in bigger screens and will come one column in mobile devices. Our final form will look like...
How to Center submit button of wpForm
You must navigate to Settings » General first. Add wpf-center to the Form CSS Class box. Now, Navigate to Appearance >>> customize >>> Advance CSS And finally, we now just need to add the CSS to our site that will center a form. add below mentioned code as it is....
How to add Marquee on any website wordpress,PHP,HTML,eBlogger ?
if you want to add marquee on any website (wordpress,PHP,HTML,Blogger). you just need to follow below step Steps:1 Copy below code <section style="margin-bottom: -13px;"><marquee onmouseover="this.stop();" onmouseout="this.start();"> <span...
How to Autoplay and Loop YouTube Videos in WordPress
First Method: Use below code to play youtube video in loop and most important is please change youtube embed link <iframe width="560" height="315" src="https://www.youtube.com/embed/AX_bpLLQOWI?autoplay=1&loop=1" title="YouTube video player" frameborder="0"...