Hi, this is probably very easy for someone, I have a link that I am creating dynamically. There is no problem if I use a static link but when I try to make it dynamic, I get syntax errors. I am not really a php developer. If someone could help I would appreciate it. Code below:
echo '<li>'."<a href='p1/?ID="$_GET['ID']"&page="$value"'>".$value.'</a>'.'</li>';
Not sure where to put single/double quotes or if they are needed at all. Trying to use a url variable as part of the link. But as soon as I put the $_GET in, that's where I get the syntax error.
thank you for your time.