Random Code Generator using PHP

Submitted by jaredgwapo on
In this tutorial we are going to learn how to make a random code generator. You may download this file and use it to your projects or systems. Creating Our Form 1. We need to create our form tag and the method is post.. 2. Create our button, name it generate and the type is submit Generate Code Creating Our PHP Script 1. create a variable named today, it is the date today. We should include this

Dialogs and Notification Logs using Jquery

Submitted by jaredgwapo on
In this tutorial, we are going to learn about dialogs and notification logs using jquery. You can use this in your systems or projects. just download the source code. Instructions Link the css and js scipts Writing the javascript code Writing the HTML code Alert Dialogs and Logs Dialogs Logs Alert Dialog Standard Log Confirm Dialog Success Log Prompt Dialog Error Log Custom Labels Custom Log

Shorten Long/Large Numbers using PHP

Submitted by Jeprox on
Good Day. In this project we are going learn how to shorten long numbers to K/ M/ B/ T/q/Q/s/S/O/N/d. This function abbreviates a large number it display numbers like 3.5K and 4.2M. thousandsCurrencyFormat(1000) - 1k (One Thousand) thousandsCurrencyFormat(1000000) - 1M (One Million) thousandsCurrencyFormat(1000000000) - 1B (One Billion) thousandsCurrencyFormat(1000000000000) - 1T (One Trillion)

Simple Mapping System using PHP and JQuery

Submitted by jaredgwapo on
In this tutorial, we are going to learn to learn how to make a drag and drop system and save its location. This is a simple project that you can use in your website or system. DIRECTIONS PUT THE LINKS INSIDE YOUR HEAD TAG CSS CODE HTML CODE " style="position: absolute; top: px; left: px; z-index: 9999; height: 20px; width: 20px;"> " id="top" value=""> " id="left" value=""> " style="display: none;"

Drag and Drop Shopping Cart using JQuery

Submitted by Jeprox on
In this project you are going to learn drag and drop feature in shopping cart using JQuery. This Drag and Drop Shopping Cart feature can be useful to your website or project. Source Code: Shopping Cart Products Gadgets iPhone iPod iPad Accessories Earphone USB Cord Powerbank Bags Zebra Striped Black Leather Alligator Leather Shopping Cart Add your items here

Snake game

Submitted by ellord on
Hi, i'm a student in informatic and I had to correct and improve an original program. Rule : You must eat the purple square to gain point until you eat yourself accidentally. Control : Arrow key Bug correction/Improvement : -Sounds has been completely reworked. -Game doesn't freeze anymore before your snake die. -Look (Alignement, font, text, antialiasing...) Original version : http://www

POS Transaction Report Processor

Submitted by Frankline on
Hello to you all, you can try this application and learn from it. It is my practice project and thanks to sourcecodester for the oppotunity, because i have learnt a lot from this site and i want others to learn from it too that is why i posted the application to this site. I used vb 2010 for the front and sql2008 for the back end. you can also use sql2008 express with advanced features for

Bubble Sort In C#

Submitted by walidsharaar on
Bubble sort, sometimes referred to as sinking sort, is a simple sorting algorithm that repeatedly steps through the list to be sorted, compares each pair of adjacent items and swaps them if they are in the wrong order. The pass through the list is repeated until no swaps are needed, which indicates that the list is sorted. The algorithm, which is a comparison sort, is named for the way smaller