Okay... I got a problem with html and php "talking" to each other.
This is for a school assignment, and I've decided to go that little bit further...
The idea is that there is 3 types of seating at a rock concert, and after selecting there decision, it will then re-direct to a new html page.
The query, here:
http://i44.tinypic.com/e9huli.jpg
Okay, so, if the viewer selects blue, then submit, show an image of the blue type ticket that I am going to make later (On a different page, placed on the site template).
Simple talk:
Blue goes to "blue.html"
Pink goes to "pink.html"
Green goes to "green.html"
After it is selected, and submit is pressed.
The form in html:
<form id="form1" name="form1" method="post" action="">
<label></label>
<p>
<label></label>
<span class="style6">Select Your Seating: </span></p>
<p>
<label>
<input name="radiobutton" type="radio" value="blue" />
Blue Seating</label><br />
<label>
<input name="radiobutton" type="radio" value="pink" />
Pink Seating</label><br />
<label>
<input name="radiobutton" type="radio" value="green" />
Green Seating</label>
</p>
<p>All seating includes around the clock access to the moshpit. </p>
<p>
<label>
<input type="submit" name="submit" value="Submit" id="submit" />
</label>
</p>
</form>
I don't know, and I can't find out how to get the php to do whatever it has too.
If you guide me on the right track, that'd be great thanks.
~Party Animal