COME ON, LEARN TOGETHER THROUGH THIS BLOG
Showing posts with label PROGRAMMING. Show all posts
Showing posts with label PROGRAMMING. Show all posts

Sunday, May 22, 2011

[PHP] NAVIGATIONS

<?php
if($_SERVER['QUERY_STRING'] == "SoD")
 print "owns you!";
else
 print "don't front!";
?>


Description: Instead of calling files like ( index.php?str=blah ) , you could do ( index.php?SoD ) and it would print out "owns you!". You can add more strings in there, this is just an example.


BATCH FILE PROGRAMMING

Batch File Programming
__________________________________________________________________

Batch file programming is nothing but the Windows version of Unix Shell

Programming. Let's start by understanding what happens when we give a DOS

command. DOS is basically a file called command.com

It is this file (command.com) which handles all DOS commands that you give at the

DOS prompt---such as COPY, DIR, DEL etc. These commands are built in with the

Command.com file. (Such commands which are built in are called internal

commands.).DOS has something called external commands too such as FORMAT,

BASIC C SOCKET PROGRAMMING IN UNIX FOR NEWBIES

1. INTRODUCTION

=======================================

Are you trying to learn c socket programming? Or do you think that it's hard stuff?

Well, then you must read this basic tutorial to get basic ideas and concepts and to start

to work with sockets. Don't expect to be a "socket programming master" after reading this

tutorial. You'll only be that if you practice and read a lot.

2. DIFFERENT TYPES OF INTERNET SOCKETS

=======================================

THE C PROGRAMMING LANGUAGE TORN APART


The C Programming Language Torn Apart
Introduction: The evolution and Description of C
The C programming language is a general purpose language which was originally designed for use on the Unix Operating System by Dennis Ritchie. The Unix Operating System, Unix Applications and Tools have been coded in C. This language has evolved from Ken Thompson's B language, which was the language designed for the first Unix System.

USING DATABASES IN PHP

Introduction:

This isn't quite a full blown tutorial, I like to think of it as a mini-tutorial. This “mini-tutorial” will cover some of the most commonly used functions. There won't be a background section; we're going to go straight to work. Today, I'm going to discuss (if the title didn't give it away) connecting to and using a database with php. The database will be MySQL because it's just sooo darn popular.

TUTORIAL ASSEMBLY FOR NERDS USING LINUX - PART 1

##################################################

Tutorial Assembly for nerds using linux - part 1

##################################################
############ Introduction ############

Assembly nowadays is a hard thing to learn, not because it's difficult but

because people thinks that there is no reason to learn assembly! That's

not true... With assembly you can have total power above the computer, and

know exactly what he's doing. Try to remember that while trying to learn!

PASCAL - BASIC

Introduction.

1) The Basics.

  1.1) Basic constraction of the program.

  1.2) Variables and Definition types.

  1.3) Basic commands.

  1.4) Div and Mod.

  1.5) If...Else.

  1.6) Case.

  1.7) Consts.

  1.8) Random numbers.

  1.9) GoToXY.