Probably one of the most tedious parts of web development is hand coding a URL with several parameters attached to it. Most beginning developers are use to hand coding URL’s when developing dynamic web apps, much like this.
<a href=”page.php?id=<? echo $_GET['id']; ?>&title=<? echo $_GET['title']; ?>&q=<? echo $_GET['q']; ?>”>XXX</a>
This isn’t a horrible practice and of course [...]