• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

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
 
Joined
Jul 19, 2006
Messages
1,178
Reaction score
40
You cannot get the Rebirth script unless and until anyone shares it. Its better to make 1 yourself.

Learning PHP will not harm you, so go ahead and learn it.
 
Newbie Spellweaver
Joined
Feb 18, 2008
Messages
31
Reaction score
0
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
 
Joined
Jul 19, 2006
Messages
1,178
Reaction score
40
$_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
Top