User input and Conditional statements

Submitted by moazkhan on

User input and Conditional statements

In this part you will learn: 1. Taking input from user 2. Conditional statements 3. C syntax 4. Showing output 5. Tabs and new lines In this tutorial I will teach you how take input from user and how to use conditional statements. Basic Step: Open Dev C++ then File > new > source file and start writing the code below.

Show/Hide Password Characters

Submitted by GeePee on
This is a simple project on how to hide and show password characters. We can use this as an option to our registration page. If the user wants to show the password characters, they just need to check the checkbox and it will automatically show the characters and by unchecking the checkbox, it will hide the characters. Hope you learn from this simple project of mine.

Positioning Elements Properly in CSS

Submitted by Yorkiebar on
Introduction: This tutorial is on how to position elements properly in CSS. Template: Here is the default HTML template containing our head and body for our page... Linking CSS: Next, if we were going to be using an external (from the editing HTML/PHP file) CSS file, we would want to link our CSS file in the head tags, like so... I'm going to be using inline styling in order for it to be easier to

How to Resize Image in PHP

Submitted by GeePee on
This project will show you how to resize image using php. It will let you upload images you want to resize. You have two options; either you change the image size using the width textfield or use the height textfield. If you change the width, the height will automatically change keeping it's aspect ratio. The same goes when you change the height. Hope you learn from this.

Writing your first C program

Submitted by moazkhan on

Writing your first C program

In this part you will learn: 1. C syntax 2. Showing output 3. Tabs and new lines 4. Headers 5. Variables and data types In this tutorial I will teach you how to write your first c program. Writing your first C program: NOTE: Whenever I write something after // or in between /* */ it means I am writing comments. Comments are not read by the compiler they are just a way to write your own notes after some statement.

Registering Via IP (Continuation) in PHP/MySQLi

Submitted by Yorkiebar on
Introduction: This tutorial is on how to allow our users register via their unrecognised IP (Continued from http://www.sourcecodester.com/php/7539/auto-recognise-users-ip-address-through-phpmysqli.html). Important: I highly recommend that you read through the linked tutorial above, it will allow you to get the same source I am going to be using throughout this tutorial! Validation: So before we