Specific name typed, specific image shown on html page
Posted on
16th Feb 2014 07:03 pm by
admin
Hello,
Fairly new to PHP and was curious if someone might know how to solve a fairly simple request.
Did you know?Explore Trending and Topic pages for more stories like this.
I am currently passing the name of an end user (who types their name in a form field) to a URL which is then passed along and placed into an html page to personalize the page for them to print. Is there a way that I could use PHP to use a specific image for a specific name typed in the field?
Example would be:
Name typed in field: Bob
Picture used: Baseball
OR
Name typed in field: Alison:
Picture used: Cat
Below is some of the coder snippets I am using.
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
$Name = Trim(stripslashes($_POST['Name']));
// 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>
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>
Any help would be appreciated
No comments posted yet
Your Answer:
Login to answer
311
45
Other forums
duplicate record notification
In my database, after insertion of records, I want to know if the record inserted is duplicate or no
Passing vars to the DB
I have 3 small testing tables:
ID TYPE
1 pepperoni
2 C. bacon
3 taco
ID TY
Trigger tag in aspx is not coming
hi all ,iam new to ajax, iam using file upload inside the update pannel but right now i want to use
Random date selection
i want to select random date with time(hour+minutes+sec) where date is specified(10/22/2009) and tim
Best way to check for end of a record and send it back to the first record
I'm hoping someone can help me out and explain the best way to accomplish this.
What I'm doin
code help - pagination
Hi all, I have this code, basically a user logs into my site and they get this page.
The pro
Values disappear from my array :( HELP!
hey all, I have a lil mysql/php/apache script that queries a database
and pulls put 5 integers.
$_FILES array
Ok,
I just started experimenting with PHP today. My goal right now is to have people be able
Change snippet to use CURDATE
I am using time() in the snippet below, I would like to use CURDATE() and have the database setup fo
RTF fomatting to email content
Im trying to sen an email with content is picked up from a rtf-file (file_get_contents('*.rtf'). Mai