Creating a Dependent Dropdown List with PHP, jQuery and Ajax.

There are times in a web application where you want to populate a dropdown list based on the value of another drop down list. Scenarios like this can be populating a Country’s State dropdown based on the value of the Country selected, populating product sub-categories based on the parent category. In this example, we will be creating a dropdown list for category/subcategory for a product in an eCommerce website. Create a database called dependent_list.

How to Create Web Browser Using VB.Net 2012

The Web Browser control in VB.NET 2012 allows you to host Web pages and other web browser enabled documents in your Windows Forms applications. You can add browser control in your VB.Net 2012 projects and it displays the web pages like normal commercial web browsers . You can use the Browser control to add your existing Web based controls to your Windows Forms client applications. The Web Browser control has several properties, methods, and events related to navigation.

Contact Us Script Using sqlite

Sqlite is a relational database management system contained in a small C programming library. Sqlite is a popular embedded database system that stores records in a little file on the system source code. Data can be retrieved through the use of write and read ability of sqlite. Moreover, Instead of saving the record into a RDMS tool like “phpmyadmin”, Sqlite can be used instead as it will save the record into a separate file on the host machine. To create a contact us page on our website using sqlite.

C Program - Cafeteria Rating

Fourty students were asked to rate the quality of food in the student cafeteria on a scale of 1 to 10(1 means awful and 10 means excellent) Place the 40 responses in an integer array and summarise and display the results of the poll #include /* Standard C Library*/ #define students 40 /* Constant students*/ #define max_rating 10 /* Constant max_rating*/ int cafeteria_rating_array[students][1]; /*

Hospital Phil Heart System

This is Phil Heart System (Hospital) This system is not complete source code you will got errors =) Full source code download here http://sywebcode.blogspot.com/2013/11/phil-heart-system-medical-system.html It has the ff. features: Meical Record Medical History Patient Record Physicain Record Physicain Appointment Room Management Billing Transaction View Map Services If you have question just

C Program to Search for Character in Array

A program that has a function to search per character in an array and return: - Yes, if the character is found - No, if the character is not found Function provided with array with constant data objects, constant pointer Main program: -To request user for character to search -To tell user whether character found or not #include /* C Standard Input and Output Library*/ #define array_size 40 /*

How to Make VB.NET Console Application with MS Access Databse 2007

This is a VB.Net Console Application program using Access Database 2007. It is very helpful in learning VB.Net with Database Programming. Instead of using Windows Forms, this program is using console application to insert record into MS Access database. Please follow the steps below on how to create a console application from scratch. 1. Create the database file called "database1.mdb" by opening the MS Word file called "How to Create DB in 2007.doc" and follow the instruction. 2. Open Visual Studio Editor. 3.