Hello, all! I have a small question, sorry, if it is silly. I have seen that sometimes PHP scripts are opened like 'srcipt_name.php?' - and no parameters after "?". What does it mean? Just wonder if I can use it, too :-)
Umm.. yeah you can use it but it isn't serving any purpose. Its only there to tell to pass variables on the URL string.
Probably does that because they set a variable for the next page like nexturl="http://www.adsf.com/index.php?"; then later they would add variables to it nexturl=nexturl."whatever=$whatever"; but they never need those variables so it doesn't have them there.