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 MoreSometimes 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 MoreRetrieving data from MySql with PHP is a simple process however you should have the following things set up before implementing this process.
Read MoreInstalling 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 MoreTo Update a Database in PHP MySqli you will have to make sure that the following steps have been taken.
Read MoreInsert 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 MoreIn order to Query results from a Database Using PHP MySqli make sure that you have the following steps taken care of.
Read MoreConnect to a Database Using PHP MySqli, you can follow these general steps:
Read MoreWhat 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 MoreIf 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 MoreTo Create a new Table in a MySqli Database you will have to be sure of the following.
Read MoreIn 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 MoreMySqli 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 MoreIn order to Create a MySql Database in PHP in MySqli you will need to have the following set up before you proceed.
Read MoreOpencart Installation on Shared or Dedicated Servers is a process but hopefully I can help make that a little easier for you.
Read More