[Solved] php dynamically generate new web page from link [closed]
Assuming each of the articles has its ID. Change the link to go to a dynamic page, passing that ID: “<div class=\”title\”><a href=\”dynamic_page.php?id=$result[id]\”>$resultphp dynamically generate new web page from link [closed]</a></div>” Then create a dynamic_page.php that accepts that ID and generates the article as follows: if (isset($_GET[‘id’])) { $id = mysql_real_escape_string($_GET[‘id’]); $q = “SELECT * … Read more