This question has already been asked in the forums but I think I need it dumbed down just a little further if someone is willing to help with that please as I'm fairly new to programming.
What I'm trying to achieve is to essentially fill out a HTML created form and have the responses display in certain places within a second templated HTML page.
Obviously the below is nothing what it should look like, but I've just mocked this up to give you an idea of what I mean.
In the form might be:
<form action="results.html" method="GET">
<input type="text" name="Title" />
<input type="submit" value="Submit" />
</form>
And I want the text that is entered to appear where the XXXXX in "results.html" is:
<table>
<tr>
<td>
<font face="trebuchet ms" size="2px" color="CBAB62">TITLE:</font>
<font face="trebuchet ms" size="2px" color="CBAB62">XXXXX</font>
</td>
</tr>
</table>
I've seen both PHP and JavaScript offered as solutions. As someone who has never touched either of these languages, could someone please advise which way I should be going to get my project across the line?
I don't have access to a web server so if its possible to do this entirely offline, that would be my preference but obviously I'm open to all suggestions and assistance offered.
Thank you all in advance.