How to Register OCX file OCX stands for OLE Control Extension. OCX file has an extension of .ocx. The OCX file type is primarily associated with ‘Object Linking and Embedding (OLE) Control Extension’ by Microsoft Corporation. ActiveX. Instructions on how…
Introduction to HTML
iNetTutor.com will provide new sets of tutorials which includes HTML, CSS, Photoshop , Programming Languages such as Visual Basic, Visual Basic.net, Java, C#, etc. and we will try to upload video tutorials on the said topics. Keep on visiting for…
PHP mail() function
PHP mail() function In this lesson we are going to show you a sample PHP script on how to send email using the PHP mail() function. PHP mail() function arguments The email address of your recipients Email subject line (ex.…
Windows Calculator
Calculator is commonly used to solve basic mathematical operations such as multiplication, division, addition and subtraction. Calculator in Windows 7 offers lot of advance features such as programming, scientific and statistics. How to open Calculator: Click Start > Run (Windows…
Restore MySQL database using PHPMyAdmin
phpMyAdmin is a free software tool written in PHP, it is a browser-based platform used to manage and administer MySQL database. On the previous tutorial we have learned how to create a backup of our databases using the mysqldump command.…
Backup MySQL database on WAMP
Backup MySQL database on WAMP In this tutorial we are going to learn how to back up our MySQL database in WAMP using the mysqldump command. mysqldump command is used to export a database or all databases that resides on…
MySQL ALTER Command
In this lesson we are going to learn how to use the MySQL alter command. There are lots of Graphical User Interface (GUI) Tools to manage our MySQL databases as discussed on this page (link), through that modifying the structure…
Determine the PHP version on your server
Determine the PHP version on your server In this lesson, we are going to learn how to determine the PHP version running on our server using codes. Just follow these simple steps: Open any text editor (notepad, notepad ++, etc.).…
MySQL SHOW Command
MySQL SHOW Command SHOW command is used to learn more about the databases found in the server, tables found in a database, and specific information about the columns or fields within a table. Let’s take a look on the uses…
Drop Database and Table in MySQL
Dropping the Database To delete an entire database, use the DROP DATABASE command. This command will delete the database and the tables inside it. Let’s try some example: Syntax of DROP DATABASE command: DROP DATABASE database_name; Where: database_name is the…