Ask question one more time because questions are not clear for stupid "not-newbies" :-)
I will try once more. Imagine you must open detail page for some product. The form is always the same, but information is different. Let's say, your detail page is "detail.php3". How do you know for which produkt you must show info? By this product's ID. How do you transfer this ID to "detail.php3"? Easy: you write in the URL where you open it:
echo'<a href="detail.php3?id=1">Detail page for product 1</a>';
So, when details.php3 opens, it knows that its inner variable $id=1.
If you have in detail.php3 code like this:
echo 'Product ID value is: '.$id;
it will print you:
Product ID value is: 1