a3 web rebirth

Status
Not open for further replies.
Newbie Spellweaver
Joined
Feb 18, 2008
Messages
31
Reaction score
0
hello can some 1 please gimme a3 rebirth script n all those scriptz.please help me i dont kno anything about php.plz help me ASAP
 
how much time wil it take to learn is it hard? i thought it hard becoz when i opened register.php to edit it showed so many stuff like if ($_GET['act'] == 'register')
{
$user = anti_injection($_POST['login']);
$pass1 = anti_injection($_POST['senha1']);
$pass2 = anti_injection($_POST['senha2'])

i dont understand all those things.can u gimme an easy tutorial link so that i can learn how to put web rb and skills etc please
 
$_GET

This is the GET Property of the PHP Script that returns Value from the Form by using the GET Value property.

['act'] == 'register'

This is the parameter that is passed back to the PHP Page. This implies register.php?act=register

$user, $pass1,$pass2

These are the variables in which the User ID, Password and Confirm Passwords are stored.

anti_injection()

This is a function that is defined to prune the special characters in the User ID or password inorder to prevent SQL Injection in the script.

$_POST[]

This is the Form POST command that will return the values from the Text boxes once the submit button is pressed.

login, senha1, senha2

These are the names of the Text Boxes which take the Input from the user.

There is NO Tutorial. All that you need to do is "LEARN PHP FIRST"
 
Status
Not open for further replies.
Back