Querystrings
Permalink
I'm trying to link to different pages, passing data through a querystring such as:
<code>
<a href="/new_product/product_id=2">Add product</a>
</code>
This is all database-driven so the passed data will always be different. How do I do this through concrete5 since everything is through index.php?
Thanks!
<code>
<a href="/new_product/product_id=2">Add product</a>
</code>
This is all database-driven so the passed data will always be different. How do I do this through concrete5 since everything is through index.php?
Thanks!
And if you have more than one piece of data, separate them with an ampersand (&):
This is all basic URL functionality by the way -- it's not specific to how C5 works.