Site Message

Ready to Switch to eZbloo?

Basic eZbloo Plan $15 a month- Perfect for Low traffic and new startups

Premium eZbloo Plan $45 a month- Perfect for High Traffic Sites

Any Questions?: Contact me here!

     


Search Results

Here are the search results.

Lesson 3 Scripts Login And Logout Functionality With Php, Mysql, And Bootstrap

Published: 2024-11-29 13:37:04

Here are the scripts from lesson 3 Login And Logout Functionality With Php, Mysql, And Bootstrap

Login And Logout Functionality With Php, Mysql, And Bootstrap Lesson 3

Published: 2024-11-26 09:16:00

Learn to craft a seamless login and logout experience with PHP, MySQL, and Bootstrap. From setting up your server to implementing session security, this tutorial will guide you through every step to create a user-friendly and secure authentication system.

Programming A Sign Up Script In Php Mysql Ajax And Jquery Lesson 2

Published: 2024-11-24 11:07:00

This is advanced programming lesson 2. WOW this is diving deep into the world of programming with PHP, Bootstrap, AJAX, MYSQL and more. Remember that you can always comment on these posts if you need me to clarify anything. I look forward to hearing from

Insert Into Database Using PHP MySqli

Published: 2024-11-02 09:28:02

Insert Into Database Using PHP MySqli using the following procedures. You must first make sure that you have these steps set up before you proceed.

Update a Database in PHP MySqli

Published: 2024-11-02 06:55:53

To Update a Database in PHP MySqli you will have to make sure that the following steps have been taken.

Summernote Files For Post How To Submit Summernote Content To Mysql Database In Php Instant Download

Published: 2024-11-01 10:15:26

Summernote Files For Post How To Submit Suuernote Content To Mysql Database In Php

Create a new Table in a MySqli Database

Published: 2024-10-27 15:27:07

To Create a new Table in a MySqli Database you will have to be sure of the following.

Restart MySql in Ubuntu

Published: 2024-10-21 16:09:22

There are times when you might have a database connection error. If you are on the Ubuntu system on Amazon hosting then run this command. sudo service mysql or try this sudo /etc/init.d/mysql start

Access MySql Terminal Commands

Published: 2024-10-21 16:06:56

In order to access your the mysql part in your terminal you will enter something like this. Access monitor: mysql -u [username] -p; (will prompt for password)

Show all databases in MySql Terminal Command

Published: 2024-10-21 16:06:53

In order to show all databases in your terminal enter the following code. show databases;

Access a Database MySQL Terminal Command

Published: 2024-10-21 16:06:49

If you're a developer working with databases, you're probably familiar with MySQL - an open-source relational database management system. While there are many ways to access a MySQL database, one of the most straightforward methods is through the MySQL te

Determine What Database Is In Use MySql Terminal Commands

Published: 2024-10-21 16:06:37

If you want to know what database that you are in you can use this terminal command. select database();

Show Tables MySql Terminal Commands

Published: 2024-10-21 16:06:33

If you want to see the tables in the database use this command. show tables;

Show Table Structure MySql Terminal Commands

Published: 2024-10-21 16:06:29

To show the table structure in terminal use this code. describe [table];

List All Indexes On A Table MySql Terminal

Published: 2024-10-21 16:06:26

To see all indexes on a table enter this code. show index from [table];

Create A New Table With Column MySql Terminal Command

Published: 2024-10-21 16:06:21

To create a new table with columns use this command. CREATE TABLE [table] ([column] VARCHAR(120), [another-column] DATETIME);

Add A Column MySql Terminal Command

Published: 2024-10-21 16:06:17

If you're working with a MySQL database, you may find that you need to add a new column to a table. Fortunately, adding a column to a MySQL table is a straightforward process that we will do using the MySQL terminal command. Here's how:

Insert A Record MySql Terminal Command

Published: 2024-10-21 16:06:13

To insert a record use this command in terminal. Customize the values. INSERT INTO [table] ([column], [column]) VALUES ('[value]', [value]');

MySql Function for Date Time Input Terminal Commands

Published: 2024-10-21 16:06:10

For date time input use this function. NOW()

Selecting Records Terminal MySql

Published: 2024-10-21 16:06:06

To select record in terminal for mysql use this command. Change the value of table and take out the brackets. SELECT * FROM [table];

Explain Records MySql Terminal Command

Published: 2024-10-21 16:06:02

To explain records use this command. Take out brackets and replace table with your table name. EXPLAIN SELECT * FROM [table];

Export A database Dump Terminal MySql

Published: 2024-10-21 16:03:05

To export a database use this command in terminal. mysqldump -u [username] -p [database] > db_backup.sql If that does not work for you then you may have created a user in cPanel or some other website management application. You may have to use the --no-ta

Import A Database Dump MySql Terminal

Published: 2024-10-21 16:02:58

To import a database dump use this command. mysql -u [username] -p -h localhost [database] < db_backup.sql

Selecting Parts Of Records MySql Terminal Command

Published: 2024-10-21 16:02:31

To select parts of records use this command. SELECT [column], [another-column] FROM [table];

Counting Records MySql Terminal Command

Published: 2024-10-21 16:02:26

To count records enter this command. Take out square brackets and replace names accordingly. SELECT COUNT([column]) FROM [table];

Counting and Selecting Group Records MySql Terminal Commands

Published: 2024-10-21 16:02:22

To count and select group records in terminal use this command. SELECT *, (SELECT COUNT([column]) FROM [table]) AS count FROM [table] GROUP BY [column];

Selecting Specific Records MySql Terminal Command

Published: 2024-10-21 16:02:18

To select specific records in terminal use this code. SELECT * FROM [table] WHERE [column] = [value];

Select Records Containing Terminal MySql

Published: 2024-10-21 16:02:14

To find records containing something use this command. SELECT * FROM [table] WHERE [column] LIKE '%[value]%';

Select Records Starting With A Value MySql Terminal

Published: 2024-10-21 16:02:11

To find something that starts with a certain string use this code. SELECT * FROM [table] WHERE [column] LIKE '[value]%';

Select A Range MySql Terminal

Published: 2024-10-21 16:02:02

To select a range use this code. Take out the brackets and replace the values. SELECT * FROM [table] WHERE [column] BETWEEN [value1] and [value2];

Select With Custom Order Limit Terminal MySql

Published: 2024-10-21 16:01:57

To select with a customer order and limit the results use this command. SELECT * FROM [table] WHERE [column] ORDER BY [column] ASC LIMIT [value];

Update Records In MySql Terminal

Published: 2024-10-21 16:01:53

To update a record you can use this command. UPDATE [table] SET [column] = '[updated-value]' WHERE [column] = [value];

Delete Records MySql Terminal Command

Published: 2024-10-21 16:01:50

To delete records in mysql use this terminal command. DELETE FROM [table] WHERE [column] = [value];

Custom Column Output Names Terminal MySql

Published: 2024-10-21 16:01:47

For Custom Column Output Names Terminal MySQL, when selecting data from a table using the SELECT statement, you can customize the output column names. This can be useful when the column names in the table are not descriptive enough or when you want to for

CREATE EXPIRE DOWNLOAD LINK IN PHP MYSQL | BEST TUTORIAL

Published: 2024-10-20 08:00:38

Ever wonder how to create a download link in PHP and then make it expire? Would you like to know how to expire a download link after a set number of times they download it? Do you want to know how to protect your files from people trying to steal your dow

How To Submit Summernote Content to Mysql Database in PHP?

Published: 2024-10-19 13:47:49

How To Submit Summernote Content to Mysql Database in PHP

Delete Images Off Server In Summernote with php, mysql, jquery, and ajax

Published: 2024-10-18 15:37:29

Sometimes, users may want to delete the images they have uploaded to the server, which requires implementing the functionality to delete images. Prerequisites: To follow along with this tutorial, you should have a basic understanding of PHP, MySQL, jQuery

Query results from a Database Using PHP MySqli

Published: 2024-10-17 20:48:52

In order to Query results from a Database Using PHP MySqli make sure that you have the following steps taken care of.

Create a MySql Database in PHP in MySqli

Published: 2024-10-17 19:46:38

In order to Create a MySql Database in PHP in MySqli you will need to have the following set up before you proceed.

Grant privileges to a Database in MySqli

Published: 2024-10-17 19:44:55

MySqli is a PHP extension used to connect and communicate with MySQL databases. One of the key features of MySqli is the ability to grant privileges to users for accessing databases. This feature allows the database administrator to have better control ov

Make a Config file to connect to MySql Database

Published: 2024-10-17 19:41:53

In order to connect to a database you need to make a key file. Make a Config file to connect to MySql Database. This is a fairly simple process. You take the information that you assigned to a database when you granted privileges to it and make a file an

Drop a table from a database with PHP MySqli

Published: 2024-10-17 19:39:44

If you want to Drop a table from a database with PHP MySqli you must make sure that the table is there in the first place. If you have not done so please see Create a New Table in a MySqli Database. To drop a table use the following code. You must make s

What is the difference between MySql and MySqli

Published: 2024-10-17 19:38:49

What is the difference between MySql and MySqli? MySqli is the new and improved extension for MySql. The difference between MySql and MySqli is the way your write the code. For instance to connect to a database in MySql you would write the code something

Connect to a Database Using PHP MySqli

Published: 2024-10-17 19:37:35

Connect to a Database Using PHP MySqli, you can follow these general steps:

Retrieving Data From MySql with PHP

Published: 2024-10-17 19:08:48

Retrieving data from MySql with PHP is a simple process however you should have the following things set up before implementing this process.

Simple Ajax Example Check for Checking Duplicates PHP JavaScript MySql

Published: 2024-10-17 15:34:38

I thought it was time that I made a simple post on using AJAX. This is a very easy script for you to develop from. The main thing that you want to keep in mind is that you have to put the following script into a file called test.php.

PHP MySqli Check For No Results in Database

Published: 2024-10-17 15:20:10

There are many times when you have to PHP MySqli Check For No Results in Database. Maybe you are checking the username and password of a user and match it to an authenticated user.

SSH Connection Install Server PHP MySql Amazon Web Hosting

Published: 2024-10-17 14:46:09

In this tutorial we will Install Server PHP MySql Amazon Web Hosting via SSH.

Block Hackers with PHP and Mysql

Published: 2024-10-17 14:25:31

If you want to block hackers automatically you have come to the right place. This of course is a PHP and MySql programming tutorial.

Delete Duplicate Entries In MySql with PHP

Published: 2024-10-17 14:12:00

I needed to delete duplicate entries in MySql with PHP. After some trial and error I wrote a script that will do it for me. What I needed to do was delete duplicate email addresses in a email script. Here is the code that made that magic happen.

SANITIZE STRINGS BEFORE INSERTING INTO DATABASE PHP MYSQL AJAX JQUERY

Published: 2024-10-17 09:56:37

You need to sanitize your string before you insert them into your databases. We show you how to do that in this lesson with "FILTER_SANITIZE_STRING", "FILTER_SANITIZE_EMAIL" and "FILTER_FLAG_STRIP_HIGH".

Login Script with AJAX jQuery PHP and MySql

Published: 2024-10-17 09:54:36

Let's create a login script with AJAX JQuery, PHP and MySQL in this tutorial. We will create a form to login to the system and use AJAX with JQuery for the process. Next we will use PHP to process the form and return data to the webpage without reloading.

Contact Form with AJAX jQuery Bootstrap PHP and MySql

Published: 2024-10-17 09:52:16

In this tutorial we create a contact form that enters contact information into a database. It will then send an email to you from your website. We do this with AJAX, jQuery, Bootstrap, PHP and MySql.

Lost Password Script AJAX jQuery Bootstrap PHP and MySql

Published: 2024-10-17 09:50:16

This is a lost password script tutorial. I write it in AJAX, JQuery, Bootstrap, PHP and MySQL. People frequently lose their passwords. Password reset scripts are almost mandatory, with people expecting software to do everything for them.

Summernote How To Store Images and Entries in MySQL Without Base 64

Published: 2024-10-17 09:36:33

Summernote How To Store Images and Entries in MySQL Without Base 64

BEST PHP ENCRYPTION DECRYPTION MYSQL TUTORIAL | PROACTIVE METHODS

Published: 2024-10-16 17:50:35

Encryption, Decryption and MySQL in PHP is very important these days with hacker after hacker out there always ready to find new crafty ways to steal your customer's information. Do not be a victim here because you do not have to be!

PHP DATA ENCRYPTION INSERT RETRIEVE MYSQL DATABASE

Published: 2024-10-16 16:22:59

PHP Data Encryption is important to safety and privacy. In this lesson, I am going to show you how to insert and retrieve encrypted data in PHP using a MySQL database. Using these methods will make your websites and applications more secure. After complet

Data Encryption Php MySql Methods Implementation Open SSL Encrypt

Published: 2024-10-16 16:03:01

Data Encryption with Php and MySql is very important. Some programmers wonder about the methods and implementation of different processes for data encryption. I

TESTING APACHE PHP MYSQL SERVER ENVIRONMENT LESSON 2

Published: 2024-10-16 14:27:51

Setting up a server

A1 Reading Marker Plugin — Let Readers Save Their Place In Any Wordpress Post

Published: 2025-11-11 10:20:25

The A1 Reading Marker WordPress plugin lets visitors highlight exactly where they left off — and return later to that same spot, even if they close the page or their browser.

Introducing The Ultimate Wordpress Database Exporter Plugin!

Published: 2025-03-12 07:28:58

Are you worried about losing your WordPress data? Want a quick, one-click solution to export your entire database without technical hassle? Look no further!

Create Expire Download Links Script

Published: 2025-02-20 19:04:02

Ever wonder how to create a download link in PHP and then make it expire? Would you like to know how to expire a download link after a set number of times they download it? Do you want to know how to protect your files from people trying to steal your dow

Home Inventory Starter Script

Published: 2025-01-25 11:47:22

Best Home Inventory Starter scripts for you to create you own home inventory!

Php Encryption Decryption Script

Published: 2024-11-27 10:41:38

Here are the scripts for this post BEST PHP ENCRYPTION DECRYPTION MYSQL TUTORIAL | PROACTIVE METHODS

Php Scripts For Lesson 2 For Advanced Programming

Published: 2024-11-24 11:17:53

Download for Lesson 2 Programming A Sign Up Script In Php Mysql Ajax And Jquery Lesson 2

Advanced Programming In Php Lesson For Real Life Scenarios With Artificial Intelligence

Published: 2024-11-20 06:00:00

Advanced programming tutorials in PHP. Set up the server and install your VS Code and get ready for the ride. Learn to develop applications. In this series you will learn how to assemble several different programming techniques to create advanced applicat

Get Files For Summernote Uploads

Published: 2024-11-13 05:12:05

Purchase files for summernote to upload images into a directory instead of base 64

How To Deal With Bad Bots Coming To Your Website

Published: 2024-10-28 14:52:31

How to deal with Bad Bots

How Do I Put Summernote in Dark Mode?

Published: 2024-10-25 18:03:31

Summernote is a popular WYSIWYG editor for web applications, and it supports a dark mode theme out of the box. Here are the steps to put Summernote in dark mode:

How To Go From cPanel to ISPConfig

Published: 2024-10-23 12:27:16

This tutorial will show how to go from cPanel to ISPConfig. The best part about ISPConfig is that it's free, while cPanel charges.

Create A New Database Terminal Commands

Published: 2024-10-21 16:06:45

If you want to create a new database in terminal enter the following command. create database [database];

Select A Database Terminal Command

Published: 2024-10-21 16:06:41

You can select a database to work with by entering the following command in terminal. use [database];

Select Records Starting

Published: 2024-10-21 16:02:07

To find records that start and end with a certain value use this command. SELECT * FROM [table] WHERE [column] LIKE '[val_ue]';

Checked Value Use Form Tag In PHP Loop For Radio Buttons

Published: 2024-10-20 08:17:18

Checked Value Use Form Tag In PHP Loop For Radio Buttons

HTML5 Forms Absolute Beginners Web Development lesson 7

Published: 2024-10-20 07:24:34

We will be covering HTML5 forms in this lesson. In your web development career you will use forms a lot. It is a good idea to get use to what is available to you. It is important to note that we are covering creating forms. Processing forms in PHP will be

New PHP7 Lessons on the Horizon

Published: 2024-10-18 16:01:54

Message About PHP7 from YouTube

Summernote How To Delete Images Uploaded To A Folder

Published: 2024-10-18 15:37:34

In Summernote you want to be able to delete your images in your directory or folder at times. As far as I can see, this is the only tutorial out there on this, so I decided to do it. I made a tutorial in the past that shows you how to upload images to a d

How To Make A Free Website Backup PHP

Published: 2024-10-18 15:33:42

This post covers how to make a free website backup. Once finished you will be able to download a complete website backup zip file. This will also include your database. This task is very easy but I am going to explain the process in detail.

Building a Calorie and Nutrient Counter Using FoodData Central API

Published: 2024-10-18 15:12:47

In this tutorial, I'll walk you through the process of creating a calorie and nutrient counter using the FoodData Central API. This guide will help you build a web application that allows users to enter a food item and receive detailed nutritional informa

Picking a Content Management System

Published: 2024-10-18 07:51:34

Picking a Content Management System CONTENT MANAGMEMENT SYSTEMS CMS is an acronym for content management system. A content management system is basically a website that you do not have to code yourself. I

Setting up The WordPress CMS

Published: 2024-10-18 07:48:57

We will go over the administration login for the first time. We will then discuss permalinks and the importance of setting them up right the first time. User management is a very important feature of the CMS and assigning roles is very significant to the

Backing Up Your Website WordPress or Cpanel

Published: 2024-10-18 07:25:06

One of the most important things that you can do is back up your website. There are 2 different kinds of backups for WordPress. We will discuss the easy way then the more thorough way through your cPanel.

Think Twice Before You Install A Plugin For WordPress

Published: 2024-10-17 19:58:09

You should think twice before you install a plugin for WordPress because of the ramifications that plugin can bring. A WordPress plugin has access to your database as soon as you install it. It can therefore update, delete, and manipulate your WordPress d

Installing and Configuring WAMP for the First Time

Published: 2024-10-17 19:26:38

Installing and Configuring WAMP for the First Time can be a daunting task. The process is actually a lot simpler than many people think. WAMP has come a long way and made the process quite simple.

WARNING: WEB DEVELOPER FOR HIRE

Published: 2024-10-17 17:11:50

Qualifications: 20 Years experience in the following computer languages. HTML Hypertext Markup Language PHP pre hypertext preprocessor CSS Cascading Stylesheets JavaScript MySql Databases ASP.NET Access SQL Node.js And many many more

PHP HTML Script For Emails

Published: 2024-10-17 15:22:52

If you are looking for PHP HTML script for emails you have come to the right place. If you look at our PHP Snippets for email. You may be disappointed that when you send an email that you do not actually see formatted HTML.

Please Enter A Valid Value HTML5 Number Input

Published: 2024-10-17 15:11:32

he number attribute in HTML5 may give you a warning, "Please Enter A Valid Value". Using decimals in HTML5 requires that you use an attribute of "step". Consider the following in the form tag element.

Amazon Web Hosting Services Getting Started

Published: 2024-10-17 14:49:25

If you are just getting started with Amazon web hosting services you may feel lost. First of all make sure that Amazon web hosting services are right for you. You must understand the following.

Set Up Instance Key Pair and Elastic IP in Amazon EC2 Dashboard

Published: 2024-10-17 14:47:45

Set Up Instance Key Pair and Elastic IP in Amazon EC2 Dashboard

Edit Files in SSH Terminal Amazon EC2 Hosting

Published: 2024-10-17 14:45:12

You will have to Edit Files in SSH Terminal, Amazon EC2 Hosting. This tutorial will demonstrate how to edit files in the SSH terminal of Amazon EC2 hosting.

Install Wordpress And Database on Amazon Web Hosting Services

Published: 2024-10-17 14:43:40

This tutorial will show you how to install WordPress and database on Amazon web hosting services. This can be challenging but I have a present for you. A terminal cheat sheet.

Enable Pretty Permalinks in Amazon Web Hosting

Published: 2024-10-17 14:40:05

This is a tutorial on how to enable pretty permalinks in Amazon Web Hosting services. In order to do this you have to enable mod_rewrite in your Apache server. Otherwise you will get a page not found error.

How To Install CURL on Ubuntu Linux Server

Published: 2024-10-17 14:35:34

IN this post I am going to show you how to install CURL on the Ubuntu Linux server. It is fast and easy and not as hard as you think.

Find Track Down That Filthy Spammer  AND BLOCK THEM!

Published: 2024-10-17 13:09:22

What Your Will Learn Here How to get a list of scripts that are emailing on your server. Get the IP address of the spammer Block the IP address

Create A Database and Table At The Same Time With PHP

Published: 2024-10-17 10:08:50

Create a database and a table at the same time with php in mysql. All you will need is the connection information to your database. This is what you will need.

Create Secure Password Sign Up Script With PHP jQuery and AJAX

Published: 2024-10-17 09:58:23

Create a secure password sign up script with PHP, jQuery and AJAX with this easy to follow tutorial. Preliminary steps for this tutorial is to go over the last post Create A Database and Table At The Same Time With PHP.

Store Image Uploads On Server With Summernote Not Base 64

Published: 2024-10-17 09:46:21

Another tutorial on how to upload with summernote to a filder

Self Destruct Letter Script | Fun Easy Mobile Friendly

Published: 2024-10-16 18:53:55

This self destruct letter script is fun, fast and mobile friendly. All you have to do is download it and upload it to your server. I created this script a while ago but I made some updates to it. You can see the self destruct letter script in action here

BEST HOME INVENTORY MANAGEMENT SOFTWARE FREE AND EASY

Published: 2024-10-16 18:48:13

So I just got done programming the best home inventory management software. I wanted it to be free and easy to use for all my friends, neighbors and subscribers. Last September, I hit the big 50. I have stuff I never knew I had. A person accumulates thing

How To Move A Large WordPress Website To A New Server

Published: 2024-10-16 18:04:17

In this how to tutorial I will show you how to move a large WordPress website from one server to another. In this tutorial I assume that you already know how to SSH into your server. You must already know these following things, if you do not, click the l

How To Search PHP Encrypted Database

Published: 2024-10-16 18:00:21

This post will show you how to search a PHP encrypted database. This is a follow up on the PHP encryption and decryption tutorials. Many have made the argument that once all the data is encrypted and stored that there is no way to query the database.

Fix Hacked WordPress Infected With Malware The Professional Way A1WebsitePro

Published: 2024-10-16 16:09:53

Fix Hacked WordPress infected with malware the professional way. There are many tutorials out there on the web on how to fix a hacked WordPress website. The way professionals fix a hacked WordPress is much different. We fix hacked WordPress websites on a

Data Types In Php 7 Objects Arrays Null Resource Lesson 11

Published: 2024-10-16 15:25:04

Here is the second part to the data types in PHP7. Lesson 10 we talked about Strings, Integers, Booleans, and Floats.In this lesson we are going to talk about Objects, Arrays, NULL and Resource. Here are the files from the previous lesson if you are just

PHP7 GUIDE FOR NEW PROGRAMMERS 2018 ECHO PRINT VARIABLES LESSON 3

Published: 2024-10-16 14:29:33

In order to make PHP work on your server you will have to create and name files with the .php extension. Apache will look for index.php in order to create an index file for your website.

INTERMEDIATE WEB DEVELOPMENT SET UP A SERVER LESSON 1

Published: 2024-10-16 14:25:41

In our beginner course we created some HTML, CSS and JavaScript in order to give a basic idea how a webpage works. However, if you went through that course you would realize that creating web pages like that for 1000's of pages would be very cumbersome an

Backup Website Terminal Instructions

Published: 2024-10-16 13:26:07

Most effective and easiest way of backing up your website is in terminal. The process that I am about to show you is very easy. It may look like it is past your capabilities but it is not.