Inserting Data in PHP/MySQL

Submitted by Yorkiebar on
Introduction: This tutorial is going to be on how to insert data in to a MySQL table through PHP. This is in companionship with my 'How To Retrieve Data' tutorial found here (http://www.sourcecodester.com/php/7510/retrieving-data-mysqlphp.html). 'Insert': To insert data in to a MySQL table, we have to use the 'INSERT' keyword command in our query statement. Steps: First we need to create the data

How To Get Dropdown List From Database

Submitted by GeePee on
This is sample project on how to get a dropdown list from the database. This project is very simple and easy to understand especially for beginners. I have one dropdown list which contains car brands. When the user choose an item from the list, it automatically display all the recorded car model under the selected brand/item. Hope you learn from this simple project.

screenshot tool

Submitted by Paul Young on
A simple window capture software, it is quite simple to understand so I don't feel there's a need for a tutorial. All it does is take a screenshot of an active window to a Bitmap (similar to Alt+Print Screen) and displays it in a PictureBox, I guess the only interesting function is CreateBitmap().

Sorting Data in PHP/MySQL

Submitted by Yorkiebar on
Introduction: This tutorial will be running off a tutorial found here (http://www.sourcecodester.com/php/7510/retrieving-data-mysqlphp.html) and will be showing you how to sort retrieved data. An example of how this could be used is in the leaderboards of a game. Table Modifications: First I need to modify my table from the previous 'Retrieving Data' tutorial. I am going to add a second column

Record Voice and Play Recorded Sound in C#

Submitted by donbermoy on
Today in C#, i will teach you how to create a program that records voice and plays it (microphone) using C#. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application and name your program as microphone. 2. Next, add three

Display Directory Structure using TreeView in C#

Submitted by donbermoy on
Today in C#, i will teach you on how to create a program that loads and displays the directory structure of C using the TreeView control in C#. So, now let's start this tutorial! 1. Let's start with creating a Windows Form Application in C# for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application and named your project as TreeViewDirectory. 2. Next, add only one TreeView1 named TreeView11 to display the contents of C directory structure.