Hey everybody I want to let you know that I have undertaken the grueling task of getting the heck away from WordPress. I was so sick of the problems and updates I had to do all the time. I am now using my ezbloo system and I am integrating all my old posts into the new system. It sucks, but in the end, I will save bundles of time. I needed to keep things simple and that is why I created ezbloo. I'll have more on this later for you guys after I am done with the total integration of my old posts here. So if you are looking for a post and need it faster, shoot me an email and I will make it a priority. [email protected]

Uploading Files With PHP and HTML Forms
Uploading Files With PHP and HTML Forms

This tutorial will show you how to use a form to upload a file with PHP. As discussed in a previous tutorial about HTML5 forms you need to have a form tag that starts and stop everything within your form.

Read More
HTML Form Input Types
HTML Form Input Types

There are several different input types that you can put in a form. We will go over them now.

Read More
HTML 5 Forms The Component Run Down
HTML 5 Forms The Component Run Down

The first step to processing forms is to understand what forms are and how they work. The HTML5 form is just form elements that work in HTML. The Form Tag

Read More
How To Make A Free Website Backup PHP
How To Make A Free Website Backup PHP

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.

Read More
Celebrity Clients and Ethical Practice
Celebrity Clients and Ethical Practice

We felt the need to address Celebrity Clients and Ethical Practice here at A1WEBSITEPRO. We, like any company like getting referrals, especially from our clients. That is how we have grown tremendously over the years. It is true that A1WEBSITEPRO has pick

Read More
Credit Card Testing Numbers
Credit Card Testing Numbers

Use these credit card numbers to test your applications. Good for developers and web masters. Test Credit Card Account Numbers

Read More
How To Go From cPanel to ISPConfig
How To Go From cPanel to ISPConfig

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

Read More
WordPress Site Trying To Download A File
WordPress Site Trying To Download A File

Sometimes when you transfer a wordpress site you will get errors. Keep in mind that your old server may be using a different version of PHP than your new server. If you keep getting prompted to download a file when you go to the front end of your website

Read More
Import A Database Dump MySql Terminal
Import A Database Dump MySql Terminal

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

Read More
Export A database Dump Terminal MySql
Export A database Dump Terminal MySql

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

Read More
Custom Column Output Names Terminal MySql
Custom Column Output Names Terminal MySql

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

Read More
Delete Records MySql Terminal Command
Delete Records MySql Terminal Command

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

Read More
Update Records In MySql Terminal
Update Records In MySql Terminal

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

Read More
Select With Custom Order Limit Terminal MySql
Select With Custom Order Limit Terminal MySql

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

Read More
Select A Range MySql Terminal
Select A Range MySql Terminal

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

Read More