Basically, I have 2 pages:
index.php
image_temp.php
Image.php has a link that currently looks like this:
<a href="image_temp.php?name=<?php echo htmlspecialchars("Image 1"); ?>">Image 1</a>
It’s sending a page title to ‘image_temp.php’, which looks like this:
<title>
<?php
$name = $_GET['name'];
echo " {$name}";
?>
</title>
So, populating the page title works fine.
My question is, how can I also add a file to the link to populate the body of the second page with a file, 01.jpg, for instance.?