Session tracking using PHP/MySQL. A sessions table is updated every time a user logs in and when they logout. When a user logs in, their session id, user id, username, ip address, date & time of login and the time they logout.
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 /*
Hi everybody, I just came up with this code, it accept input register it and login to view data. Hope the code will help you in your future projects. Enjoy yourself...
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.
This is a VB.Net Windows Base TicTacToe Game. It is very helpful in learning VB.Net Programming Language. It compares 2 strings like O or X. It prompt a messagebox for the winner and it uses basic sub functions. Just use any Visual Studio Versions IDE then download my SouceCodes. I hope it is very helpful. Teody Banagan
A program that can be used to multiply two matrices. It uses the following algorithm: Step 1: Make sure that the the number of columns in the 1st one equals the number of rows in the 2nd one. (The pre-requisite to be able to multiply) Step 2: Multiply the elements of each row of the first matrix by the elements of each column in the second matrix. Step 3: Add the products. #include //Variable
This is a Delphi Windows Calculator. It is very helpful in learning Delphi Programming Language. I calculates addition,subtraction,multiplication and division. Just use any windows based Delphi IDE then download my SouceCodes. I hope it is very helpful. Teody Banagan
Add/Edit/Delete/Update Using PHP/MySQL Database name = actual_db Fields = name, section and id primary key. use xampp or wammpp serve to run the program.
Like and Unlike sourcecode. System Requirements: -Xampp 1.7.3 or below -Chrome,Firefox,Opera How to Install? -Download the following files -Extract the zip files to htdocs(this is the path: C:\\xampp\htdocs) Create Database -Go to your browser ans type localhost/phpmyadmin -Create database name upload -Click Tab Import and Browse the sql file You can download more php Codes @ appscoder.blogspot
Simulation of an Airport. There is a small busy airport with only one runway. In each unit of time one plane can land or one plane can take off, but not both. Planes arrive ready to land or to take off at random times, so at any given unit of time, the runway may be idle or a plane may be landing or taking off. There may be several planes waiting either to land or to take off. Follow the steps