How to Crop Image

Submitted by GeePee on
This project will teach you how to crop image using php and javascript. The user will first need to upload a picture. There will be a transparent dotted box which the user will use to determine what size and angle to cut. The box can be dragged and resized.

Create XML File in VB.NET

Submitted by donbermoy on
Today in VB.NET, I’m going to teach you how to create a program that also creates an XML file using VB.NET. We all know that XML (Extensible Markup Language) is an easy way to create common information formats and share both the format and the data on the World Wide Web or elsewhere. Now, let's start this tutorial! 1.

Bubble Sort in C# Console

Submitted by donbermoy on
Today in C#, I will teach you how to create a program for bubble sorting using C# console. We all know that bubble sort is a sorting algorithm that is repeatedly searching through lists that need to be sorted, comparing each pair of items and swapping them if they are in the wrong order. Now, let's start this tutorial! 1.

Use DateTime Stamp Appropriately in PHP/MySQLi

Submitted by Yorkiebar on
Introduction: This tutorial is on how to use timestamps properly in PHP and MySQLi to sort information from databases in to the correct order. What's a Timestamp? A timestamp is a data type in PHP and MySQL(i) which is used to hold the correct format of a specified date, time, or date and time together. Database: To enable a database table to hold a timestamp we can first create a database, named 'fln', then create a table named 'test', and give it the following column structure... id, int, 5 length, primary key, auto increment date, dateti

Nested For LOOPS

Submitted by moazkhan on

Nested For LOOPS

In this part you will learn: 1. For LOOP 2. Nested For LOOP 3. More on conditional statements 4. C syntax 5. Showing output In this tutorial I will teach you how to make different shapes using For Loop and * . Making different shapes with * may sound something like very unimportant but trust me making these shapes provide a very good understanding of the loop. What is a NESTED LOOP ? Sometimes we need two loops to execute a statement.