Getting Started with C# C# (pronounced as C Sharp) is one of the programming language developed by Microsoft that is implemented in .Net Framework so therefore you must install the .Net Framework on your unit to run the applications written…
Programming
Introduction to Visual Basic .Net
Introduction to Visual Basic .Net Microsoft Visual Basic .Net is a high level programming language used to create Graphical User Interface application (GUI) intended to run on Microsoft Operating Systems alongside with its integrated development environment (IDE). VB.Net is implemented…
Introduction to Java Programming
Introduction to Java Programming Before we begin with our lesson proper, let us discuss first a brief overview of Java Programming Language. Java was developed by James Gosling and his team at Sun Microsystems in 1991 and introduced to the…
Introduction to Visual Basic 6.0
What is Visual Basic? Visual Basic is a high level programming language developed from the earlier DOS version called BASIC. Visual Basic is a Rapid Application Development Tool (RAD) used for developing graphical user interface (GUI) application. With this feature,…
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.…
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.).…
PHP Tutorials Compilation
PHP Tutorials Compilation Here are the list of our PHP Lessons and Tutorials Introduction to PHP scripting language PHP Tutorial – Learning the PHP Syntax PHP Tutorial – PHP Basic Data types PHP Variables PHP String Variable PHP if statement…
PHP-MySQL Lesson: DELETE statement
DELETE statement In this lesson we are going to write a PHP script that deletes records in MySQL database using the DELETE statement. We can execute any sql query like insert, update, delete, select etc. using the mysql_query() function. In…
PHP-MySQL Lesson: UPDATE statement
UPDATE statement In this lesson we are going to write a PHP script that updates records in MySQL database using the UPDATE statement. Parameter of UPDATE command: UPDATE – Performs an update MySQL query SET – Updates (assigns new value…