Sending Emails Every Hour From Server With Limit PHP
Sending Emails Every Hour From Server With Limit PHP

Why would you want to send emails every hour from your server? Most servers only allow you to send out 250 emails every hour and some servers only allow you to send out 500 emails a day.

Read More
Using Crypt to Encrypt Password in PHP
Using Crypt to Encrypt Password in PHP

Sometimes we need to encrypt a password hash in php before inserting it into the database. This should not be used for user password but maybe an additional password. Either way it is fun to work with. The code below will reveal this information.

Read More
Retrieving Data From MySql with PHP
Retrieving Data From MySql with PHP

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

Read More
Installing and Configuring WAMP for the First Time
Installing and Configuring WAMP for the First Time

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.

Read More
Update a Database in PHP MySqli
Update a Database in PHP MySqli

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

Read More
Insert Into Database Using PHP MySqli
Insert Into Database Using PHP MySqli

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.

Read More
Query results from a Database Using PHP MySqli
Query results from a Database Using PHP MySqli

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

Read More
Connect to a Database Using PHP MySqli
Connect to a Database Using PHP MySqli

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

Read More
What is the difference between MySql and MySqli
What is the difference between MySql and MySqli

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

Read More
Drop a table from a database with PHP MySqli
Drop a table from a database with PHP MySqli

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

Read More
Create a new Table in a MySqli Database
Create a new Table in a MySqli Database

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

Read More
Make a Config file to connect to MySql Database
Make a Config file to connect to MySql Database

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

Read More
Grant privileges to a Database in MySqli
Grant privileges to a Database in MySqli

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

Read More
Create a MySql Database in PHP in MySqli
Create a MySql Database in PHP in MySqli

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

Read More
Opencart Installation on Shared or Dedicated Servers
Opencart Installation on Shared or Dedicated Servers

Opencart Installation on Shared or Dedicated Servers is a process but hopefully I can help make that a little easier for you.

Read More