A doubt in PHP variables
Assume in one page i'm having a variable named $name and from the previous page i'm getting a value from the form in the variable name $_POST['name'].
i want to know whether both $name and $_POST['name'] are same and rise to conflict in variable names.
And also if there is also a variable getting as GET ($GET['name']) and there is a session variable $SESSION['name']
i want to know that these $name, $POST['name'], $GET['name'], $_SESSION['name'] are same
thanx