Articles

Metasploit Framework Windows Tutorial
Remote Desktop Connection
Windows Processes That May Be Dangerous
How-To use NetCat a Tutorial
Common Linux Commands
Common Ports
Netcat Commands
HTTP Response Codes
War-Google Hack Terms
Wardriving
Avoiding Social Engineering and Phishing Attacks
Intrusion Detection on Linux
Linux Intrusion Detection
Penetration Testing Guide
Penetration Testing Tools
Social Engineering Fundamentals, Part I: Hacker Tactics
Social engineering (computer security)
The Psychology of Social Engineering

The Archives

General GSO
GovernmentSecurity.org News & Suggestions
In The News
Open Topic
General Security Information
Trash Can
Exploit & Vulnerability Mailing List Archives
Trial Member Forum
Product and Program Reviews GSO Tutorials
System Security
Windows Systems
Beginners Section
Linux & Unix Systems
File Downloads
Exploit Research & Discussion Trojan & Virus Errata
Networking Security / Firewall / IDS / VPN / Routers
System Hardening
E-Mail Security
Wifi Security
Trial Member Uploads
Upload discovered Trojans & Mal ware
GSO Programming Section
C , C++ , VC++
Visual Basic.NET
Perl /CGI
Java/Javascript
PHP/XML/ASP/HTML
Assembly + Other
The Cork Board
Network Security Consultant Directory
Network Security Jobs
The Archives
Encryption Information
General Network Security
Internet Anonymity
HTTP Protocol Security
Linux Security
MS IIS Information
Exploit Articles
Programming / Tool Design
GSO Software Projects
Public Downloads
Microsoft Security Questions and Papers

Full Version: Php Guide
Hybr!d
Well This is a Guide for beginners in the PHP language area..

Introduction Tutorial on PHP..

Firstly PHP stands for Hypertext Preprocessor.. It is an open source,interpretive,cross platform,HTML embedded, Server side language which lets you create dynamic Web Pages. Because PHP is A Server Side language it is executed on a server so the viewer cannot see the code.

To understand PHP you got to learn the basics.

Now PHP always starts with the <?php tag and ends with ?>

Those two tags Have to go at the top and bottom of the script in order for it to work...

Also the semicolon ";" is a seperator and is used to determine one set of instructions from the other.

This simple code is a perfect example...

<?php
echo "Hello World";
?>

This simple code just Outputs on your Page Hello World.

Another Topic I will be explaining Here is Variables..

All Variables in PHP start with the "$" symbol. variables can consist of numbers, arrays and strings.

The code Below will show you that I have attached the String "I am Ali" to a variable called $hi.

<?php
$hi = "I am Ali";
echo $hi;
?>

This code will Output on your screen "I am Ali".

Now if you want to integrate two,three or more variables all you got to use is the "." operator...

The code below will will show you that I have a $hi and $hi1 variable both being attached to strings and being outputed by the "." operator.

<?php
$hi = "I am Ali";
$hi1 = "1234";
echo $hi1 ."". $hi1 ;
?>

This script will output on your screen I am Ali1234.

This is my First ever Tutorial in PHP so i hope you like it and Soon i will make more on PHP..

By Hybr!d 2005

belgther
BTW, is Ali your real name?
Hybr!d
Yep Ali is my real name lol
psysmile
lol biggrin.gif,
I think you should go to the next part of your tutorial.
maybe I can learn something.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2005 Invision Power Services, Inc.