I have this scenario in my MySQL database:
I need select row where tag is from url parameter (GET) with php-mysql query:
$tag = $_GET['tag'];
// example $tag = 1
// now I need select rows where in tags colums is value 1.
How can I obtain this query? I think that I need create an array... but I dont know how do. thanks in advance!