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!

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
Use these credit card numbers to test your applications. Good for developers and web masters. Test Credit Card Account Numbers
Read More
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
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
To import a database dump use this command. mysql -u [username] -p -h localhost [database] < db_backup.sql
Read More
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
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
To delete records in mysql use this terminal command. DELETE FROM [table] WHERE [column] = [value];
Read More
To update a record you can use this command. UPDATE [table] SET [column] = '[updated-value]' WHERE [column] = [value];
Read More
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
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
To find records that start and end with a certain value use this command. SELECT * FROM [table] WHERE [column] LIKE '[val_ue]';
Read More
To find something that starts with a certain string use this code. SELECT * FROM [table] WHERE [column] LIKE '[value]%';
Read More
To find records containing something use this command. SELECT * FROM [table] WHERE [column] LIKE '%[value]%';
Read More
To select specific records in terminal use this code. SELECT * FROM [table] WHERE [column] = [value];
Read More