this tutorial is about php get variable and url forwarding
you can move variable in url with php with out html form
make one page with this code :
CODE
<?php
$what = $_GET['what'];
$trap17 = $_POST['trap17'];
echo "Your name is : " . "$what" . "and Your Trap username is : " . "$trap17";
?>
save this file with name "name.php" then upload name.php at your hosting ,
then turn your browser at this url :
http://yoursite.trap17.com/name.php?what=f...p17=farsiscript
when page is displayed it show this text :
Your name is : farsi and Your Trap username is : farsiscript
With $_GET tag in php you can take variable form url
when you write search engine for your site this script can help you to get variable form url
for example do you see music web site ?
music website has this part :
A B C D E F G H I ................................................. Z
if you click at one of alphabet it show you albums with alphabet name
you can Get variable form url
for example for musc web site name.php :
CODE
<?php
$alfa = $_GET['alfa'];
echo "$alfa";
?>
then You must link A at your page to name.php with this action
<a href="name.php?alfa=A">A</a>
when visitors click at A in page name.php write A at page
you can make Mysql Search engine
I hope This tutorial Help you to get variable form url

