Entri yang Diunggulkan

ONLINE VOTING SYSTEM PHP

Voting System project is developed using PHP, JavaScript, Bootstrap, and CSS. The project has  lots of essential fea...

Latest Posts

ONLINE VOTING SYSTEM PHP

Voting System project is developed using PHP, JavaScrip…

ONLINE CAR RENTAL SYSTEM PHP AND MYSQL

An online car rental system allows a person to book/reserve a vehicle wi…

STUDENTS RESULTS MANAGEMENT SYSTEm

INTRODUCTION The whole idea for a students' results Manag…

Introduction To MySQL

SQL is a standard language for accessing and manipulating databases…
werdytfugyhujnkmljnhbigvuftdreswaqawsedrytghujlnlhyutfryeeeeeeeeed

Introduction To PHP

PHP is server-side and scripting  languages in existence today. The lan…

A full Pyramid Shape In C

Complied On :  Code::Blocks 17.0 Save :-  .c file (C Program) Cre…

ONLINE VOTING SYSTEM PHP











Voting System project is developed using PHP, JavaScript, Bootstrap, and CSS. The project has  lots of essential features. This project contains a Voter’s login panel where a voter can Sign in to vote and Admin Panel where he/she can view total votes, add and list voters, positions, candidates and many more. While logging in from voter’s login, the user should provide Voters ID in order to log in to the system to vote. The voter’s id can be retrieved from the Admin Panel.
How To Run??
After Starting Apache and MySQL in XAMPP, follow the following steps
1st Step: Extract file
2nd Step: Copy the main project folder
3rd Step: Paste in xampp/htdocs/
Now Connecting Database
4th Step: Open a browser and go to URL “http://localhost/phpmyadmin/”
5th Step: Then, click on databases tab
6th Step: Create database naming “votesystem” and then click on import tab
7th Step: Click on browse file and select “votesystem.sql” file which is inside “database” folder
8th Step: Click on go.
After Creating Database,
9th Step: Open a browser and go to URL “http://localhost/votesystem/”
For Admin Panel
Final Step: Go To URL “http://localhost/votesystem/admin/”
Insert the username and password which is provided inside the “Readme.txt” file.
Note: Voter ID can be retrieved from Admin Panel – voters list. Copy the Voters ID from Voters List, Admin Panel and Paste it to Voter’s Login in order to proceed for voting.


ADMIN PANEL LOGIN DETAILS

Username: codeprojects
Password: password
Download free now


ONLINE CAR RENTAL SYSTEM PHP AND MYSQL


An online car rental system allows a person to book/reserve a vehicle with/without payment on one end while the company staff handles the transactions, on the other via the Internet. Online Car Rental Systems are used mostly in developed countries such as England and Australia where electronic commerce has been fully accepted in the society, has gained popularity since the business used the technologies available to expand and provide more facilities to their customers.


The basic functions of an online car rental system are to keep tracks of vehicles, staff, customers and booking. It provides useful information to the staff such as giving daily reports of vehicles to be delivered/picked up and acts as a vehicle management system by monitoring the use and price of the vehicles.
Comment below on how to configure this project



STUDENTS RESULTS MANAGEMENT SYSTEm

Image result for students results management system







INTRODUCTION
The whole idea for a students' results Management system arose due to problems such as duplication of results, loss of results when files are being carried around, wrong calculations during computation and omission of result which are encountered frequently. Using this online system, the school management would ensure that results are processed faster, without delays and with fewer errors. The system was developed using PHP, CSS, HTML, MYSQL and was hosted locally using Apache web server. However, the system comprises of two users which are the Lecturer and Students

Student Privileges
1. Search Result
2.View Results
3.Print/download results
Students Result Search and PHP Query
The student is able to search for their results by entering the module and student No.

 Admin/Lecturer Privileges

1. Manage Students
2. Add/Edit/Delete Classes and Sections
3. Add/Edit/Delete Subjects
4. Add/Edit/Delete Results
5. Change System Password

Login Details: Email= admin Password= 123


1.      Installation Instructions

1. Extract the folder
2. Copy the folder to C:\xampp\htdocs
3. Create a new database in localhost/phpmyadmin

4. Locate the SQL file in Folder: database/srms.sql and import the SQL file to phpmyadmin


Please make sure the database is correctly connected

     Lastly run the URL – http://localhost/luka/






Introduction To MySQL

 




SQL is a standard language for accessing and manipulating databases.
werdytfugyhujnkmljnhbigvuftdreswaqawsedrytghujlnlhyutfryeeeeeeeeed

Introduction To PHP


Image result for PHP

PHP is server-side and scripting languages in existence today. The language has the ability to communicate back and forth with a server and create a dynamic web page for the user. If you have a web hosting account to run your personal blog or website, I can guarantee that PHP is already installed. Even the page you are looking at right now was created by PHP. If you have ambitions of becoming a web developer, PHP is a must for you and will allow you to create dynamic web pages based on external input, usually from the user. 
It is also important to note that PHP is an object-oriented programming language, and O.O.P. is one of the things we will cover in the series.



To learn PHP you need to have some basic knowledge in Programming . Getting a grasp of the basic programming concepts might be easier in a language such as Visual Basic as the syntax and concepts in PHP might be quite confusing for a beginner. If you have no experience in scripting, I might also suggest taking a look at JavaScript which is a client-side scripting language, making it limited when compared to PHP. But don’t let that scare you, PHP teaches some great coding habits and if you are capable of picking things up quickly then you should be just fine. Let’s take a little look at the syntax first, here’s how you would tell PHP to output the text “Welcome to my website” to a browser:

<?php
echo 'Welcome to my website';
?>

It all looks pretty logical, right? You are echoing out the sentence enclosed in the quotation marks to the web browser. And each statement in PHP must end with a “;” to notify the processor module that we have ended our statement. New lines and blank space are not recognized. You must also wrap PHP code inside “<?php” and “?>” tags to notify the server when a PHP script will start and end. So if you think you are ready to start learning PHP, click on the first video just below this paragraph to begin learning. I hope you find the free tutorials useful.

A full Pyramid Shape In C



Complied On : Code::Blocks 17.0

Save :- .c file (C Program)

Created By :- Lukas Yooma 






                                                                          
#include <stdio.h>
int main()
{
    int i, space, rows, k=0;

    printf("Enter number of rows: ");
    scanf("%d",&rows);

    for(i=1; i<=rows; ++i, k=0)
    {
        for(space=1; space<=rows-i; ++space)
        {
            printf("  ");
        }

        while(k != 2*i-1)
        {
            printf("* ");
            ++k;
        }

        printf("\n");
    }

    return 0;
}