Basant PHP Developer in india

Basant PHP Developer in india I am a freelance PHP Developer In Delhi NCR India

You must navigate to Settings » General first. Add wpf-center to the Form CSS Class box.Now, Navigate to Appearance >>> ...
28/01/2025

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.
wpf-center .wpforms-submit-container {
display: inline-block;
text-align: center;
width: 100% !important;
}

Booom.

You must navigate to Settings » General first. Add wpf-center to the Form CSS Class box. Now, Navigate to Appearance >>> customize >>> Advance CSS A

Certainly! If you want to convert a multi-column form layout to a single column when viewed on mobile, follow these step...
28/01/2025

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 using the CSS class wpforms-one-half.
- The first field in each row should also use the wpforms-first class to indicate that it starts a new row.

- Displaying Fields in a Single Column on Mobile:

- In the form builder, click on a field to display the Field Options.
- Under the Advanced section, add the wpforms-mobile-full class to the CSS Classes field.
- Repeat this for other fields in the form.
- Don’t forget to click the Save button to keep the changes.

Now, when mobile visitors access your form, the multi-column layout will be shown as a single column. Your forms will look professional and user-friendly on smaller screens! 📱

How to Display Fields in a Single Column on Mobile - WPForms , if you want to convert a multi-column form layout to a single column when viewed on mobile, follow these steps using WPForms:

Just use below code and modified according to your need.Note: this is very useful for COD and Prepaid charge addition us...
28/01/2025

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

Please select your Payment Method.

Prepaid
COD

Total Amount

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

28/01/2025

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 for Non-Compliance:

Missing or Incorrect '@' Symbol: The '@' symbol separates the local part (the username) from the domain part (the email provider). Its absence or incorrect placement is a common cause of this error.
Invalid Local Part: The local part can contain letters (both uppercase and lowercase), numbers, underscores, hyphens, and periods. However, it cannot start or end with a period, and consecutive periods are not allowed.
Invalid Domain Part: The domain part typically consists of one or more domain names separated by periods. Each domain name should adhere to specific rules, such as not starting or ending with a hyphen.

Here’s a tailored post for your website using the requested keywords:By Basant Mallick, Freelance PHP Developer in Delhi...
28/01/2025

Here’s a tailored post for your website using the requested keywords:

By Basant Mallick, Freelance PHP Developer in Delhi

As a freelance PHP developer in Delhi, I often work with PostgreSQL, a powerful open-source relational database system. One common requirement when designing database tables is to add an auto-increment feature for a column, usually for primary keys. In this guide, I'll walk you through the process of setting up auto-increment in PostgreSQL.

What Is Auto Increment?

Auto-increment allows a database column to automatically generate a unique value for each row inserted into a table. In PostgreSQL, this is typically achieved using a SERIAL or IDENTITY column.

Steps to Add Auto Increment in PostgreSQL

1. Create a New Table with Auto Increment

If you're creating a new table, you can define a column with the SERIAL or GENERATED AS IDENTITY type.
|BasantMallick

Learn how to efficiently set up auto-increment columns in PostgreSQL with this step-by-step guide. From creating new tables to modifying existing ones, gain expert insights from a freelance PHP developer in Delhi. Elevate your database management skills today!

28/01/2025

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 PHP

apt install php

install mysql sever

apt install mysql-server

now open filezilla

use sshand username ubuntu

password ppk key

upload file (in my case index2.zip) inside ubuntu folder

now move uploaded zip file into /var/www/html/

mv index2.zip /var/www/html/

cd /var/www/html/

lsyou can see your file here

now install unzip

apt install unzip

now unzip your file

unzip index2.zip

nowcd /etc/apache2/sites-available/

ls

now opennano 000-default.conf

add

Steps: AWS puttyubuntu sudo su apt update apt install apache2 service apache2 start service apache2 status you will see a ubuntu on your

// start multiple image$stmt = $conn->prepare("INSERT INTO cat_images (img_url, cat_id) VALUES (?, ?)");$stmt->bind_para...
28/01/2025

// start multiple image
$stmt = $conn->prepare("INSERT INTO cat_images (img_url, cat_id) VALUES (?, ?)");$stmt->bind_param("si", $imagePath, $cat_id);$uploadedImages = $_FILES;
$cat_id = $conn->insert_id;
foreach ($uploadedImages as $key => $value) {$targetDir = "main-images/galleries/";$fileName = basename($uploadedImages);$targetFilePath = $targetDir . $fileName;if (file_exists($targetFilePath)) {echo "Sorry, file already exists.";} else {if (move_uploaded_file($uploadedImages, $targetFilePath)) {$imagePath = $targetFilePath;$stmt->execute();echo "The file " . $fileName . " has been uploaded successfully.";} else {echo "Sorry, there was an error uploading your file.";}}}$stmt->close();$conn->close();
// end multiple image

Learn how to upload and store multiple images in a MySQL database using PHP. A step-by-step guide by a freelance PHP developer in Delhi NCR, India.

28/01/2025

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 Command

npm install
npm run build



How to Make Login and Registration in Laravel for Beginners

just add below code in column properties id Default inputMethod: 1nextval('form_submissions_id_seq'::regclass)Method: 2 ...
28/01/2025

just add below code in column properties id Default input

Method: 1nextval('form_submissions_id_seq'::regclass)

Method: 2 Via SQL Query

ALTER TABLE statesADD COLUMN id SERIAL PRIMARY KEY; Note: if you already have column id previous please delete before above running sql

How to Make ID as Auto Increment in PostgreSQL

When building a database in PostgreSQL, it’s common to want the ID field of a table to automatically increment whenever a new record is added. This ensures that each record has a unique identifier without needing manual input. Thankfully, PostgreSQL provides an easy and efficient way to set up auto-incrementing IDs using sequences.

In this blog, we’ll guide you through the process of creating an auto-incrementing ID field in PostgreSQL and explain how to use the nextval() function to set it up.

What Is an Auto Increment ID?

just add below code in column properties id Default input Method: 1nextval('form_submissions_id_seq'::regclass) Method: 2 Via SQL Query ALTER TABLE sta

Creating dependent dropdowns in CakePHP 2 involves using AJAX to dynamically load data into the second dropdown based on...
28/01/2025

Creating dependent dropdowns in CakePHP 2 involves using AJAX to dynamically load data into the second dropdown based on the selection in the first. Here's how you can implement a dependent dropdown of "State" and "District" in CakePHP 2:

Steps to Implement

1. Database Setup

Ensure you have two tables: states and districts, where districts has a state_id column to link districts to states.

Example schema:

- states table:

- id (Primary Key)

- name (State Name)

- districts table:

- id (Primary Key)

- name (District Name)

- state_id (Foreign Key referencing states.id)

2. Controller Logic

In your controller (e.g., LocationsController):

- Load states for the first dropdown.

- Create an action to fetch districts based on the selected state.

Creating dependent dropdowns in CakePHP 2 involves using AJAX to dynamically load data into the second dropdown based on the selection in the first. Here's how

"Crafting Digital Dreams! 🌐✨ Freelance Website Developer 🛠️ | Delhi NCR 🏙️ | Transforming Ideas into Stunning Websites 💻...
07/08/2023

"Crafting Digital Dreams! 🌐✨ Freelance Website Developer 🛠️ | Delhi NCR 🏙️ | Transforming Ideas into Stunning Websites 💻🚀 "

🌐 Need a professional website developer in Delhi NCR, India? Look no further! 🧑‍💻💼🔧 Building stunning websites with crea...
10/07/2023

🌐 Need a professional website developer in Delhi NCR, India? Look no further! 🧑‍💻💼

🔧 Building stunning websites with creativity and expertise. 🎨✨

🌍 Get your business online and reach a wider audience. 📈💻

💡 Customized solutions to meet your unique requirements. 🛠️📊

💪 Delivering excellence with every project. 💯🚀

💼 Affordable rates for top-notch quality. 💰💎

Address

Delhi
110092

Alerts

Be the first to know and let us send you an email when Basant PHP Developer in india posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Contact The Business

Send a message to Basant PHP Developer in india:

Share

Category