etully,
I would imagine I would have to use a database because the number of people using it is going to be around 50 people. The images won't change. Bob would always be a baseball unless they are OK with the default image.
This doesn't sound like it would be too difficult, but I am not that experienced with PHP. Used it on a few things here and there.
Here is the code from the form that the end user types in their name:
<form id="form1" name="form1" method="post" action="name_of_user.php">
<label>Gallery Name:<br />
<input type="text" name="name" id="name" />
</label>
<br />
<label>
<input type="submit" name="Submit" id="Submit" value="Submit" />
</label>
</form>
Here is the code that receives the post from above file:
<?php
$Gallery = Trim(stripslashes($_POST['Gallery']));
// redirect to success page
if ($success){
print "<meta http-equiv=\"refresh\" content=\"0;URL=path to file/comp_pass_exhibitor.php?name=$Name\">";
}
else{
print "<meta http-equiv=\"refresh\" content=\"0;URL=path to file/comp_pass_exhibitor.php?name=$Name\">";
}
?>
_____Below is code from the html page I want personalised____
Here is the bit of code that places the name in the html page:
<p><strong>
<span style="text-transform:uppercase;"><?php echo $_GET['name']; ?></span> <br>
some text that doesn't change</strong> </p>
Here is the bit of code for the image on the html page:
<td>
<img src=" What would go here " width="140" height="109" align="left">
</td>