Add GET or POST parameters on include files in PHP

1 · Subin Siby · July 13, 2013, 3:30 a.m.
If you want to add GET parameters or POST parameters to files loading using include function in PHP then you should know the following: It’s not possible. But it is in a different way. If you are adding GET parameters to file name like the following, then it won’t work: The above code won’t load the file, because PHP Include function only looks for files, it won’t send any parameters....