Just adds a php thing on the end, so when you click "Here" it just adds &page=here to the end of the url
Printable View
Just adds a php thing on the end, so when you click "Here" it just adds &page=here to the end of the url
PHP Includes, although a little more in-depth.
www.php.net/includes
http://habboxforum.com/showthread.php?t=43037
Tutrial on the forum ;)
no i know how to use includes, but say i wanted a link like;
It trys to open the page called &page=home so how do i make a link which just adds &page=home to the end of the urlCode:<a href="&page=home">Click here</a href>
You have to use a PHP function called Classes.
Search it on google
wait this might work, whats code to retrieve the url you're on, its something like server_uri
Well you cant start it with an &, it has to start with a ? then exstra critera are with ands
aka
?need=pie
is right
&need=pie
is wrong.
?need=pie&want=cake
is right
&need=pie&want=cake
etc etc
to make that have any effect somthing on the pages code has to read the get varibles and do somthing with em, if you just use the
?need=pie&want=cake, what your actualy loading is, index.php?need=pie&want=cake (or index with another exsention)
if you wanted it for a particual page, food.php?need=pie&want=cake is an example.
Hope that helps :)