liquidmind Posted June 30, 2007 Share Posted June 30, 2007 What do these symbols after index.php mean ? Thx. index.php?a=cat&cc=456 index.php?a=d&id=1925 Link to comment https://forums.phpfreaks.com/topic/57800-what-does-this-mean-after-indexphp-in-link/ Share on other sites More sharing options...
cooldude832 Posted June 30, 2007 Share Posted June 30, 2007 Variables being passed somehow your code is forcing theses variables to be passed you can retrive them by saying $_GET['a'], $_GET['cc'] $_GET['id'] Link to comment https://forums.phpfreaks.com/topic/57800-what-does-this-mean-after-indexphp-in-link/#findComment-286345 Share on other sites More sharing options...
JP128 Posted June 30, 2007 Share Posted June 30, 2007 Yea, you probably have a form that is being submitted to that page... <form method="post(goes through site not showing you) or get(goes on the address, adding ?varname=varvalue" action=""> Link to comment https://forums.phpfreaks.com/topic/57800-what-does-this-mean-after-indexphp-in-link/#findComment-286371 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.