I googled and didnt find any explanation. By "position of code" I mean, for example you have to fetch users very frequently and the portion of code that does that comes after 2000 lines in script file
.
. //2000 lines of code above
.
.
//code portion for user fetch
.
.
.
.
Will it affect the speed or performance in any way?
My code is like
if(isset($_POST['id']))
{ //code }
if(isset($_POST['name']))
{ //code }
.
.
.