I have a dropdown menu from where users selects 2 words and make a search for them. (color and size)
the query is something like that
Code:
" SELECT * FROM table WHERE color LIKE '%$color%' AND size LIKE '%$size%'"
It list the query, and than I use
PHP Code:
<a href="product.php?id=" . $row['ID'] . "\">
and this is "autogenerated link"

because it's not a file and I don't know how to call it
so....
on product.php?id=1
i list data from db including contact details.
and I try to transform "your data" (your example:
contact@yourmommas.com) in strings to call from db same time with the rest of the info (description, etc) listed automatic on product.php?id=1
test = test_3.php
the code works fine...
but I can't adapt it to my needs... or... I don't know how.... yet ! (still tryin and learning)