I need a JavaScript solutions. I recived data from aweber after user subscribe, in success page. so url like:
http://example.com/success/[email protected]&name=Jhon&custom_phone=0005551114&custom_location=USA
They give some javascript solutions to show data in webpage or success page...
So When I put
<script type="text/javascript">formData.display("name")</script>
<script type="text/javascript">formData.display("email")</script>
<script type="text/javascript">formData.display("custom_phone")</script>
<script type="text/javascript">formData.display("custom_location")</script>
value will show in my page. But How can I put the value in a input field in success page??
<form action="" method="post">
<input type="text" name="username" value="Jhon">
<input type="text" name="useremail" value="[email protected]">
<input type="text" name="phoneno" value="0005551114">
<input type="text" name="country" value="USA">
<input tyoe="submit" value="Submit">
</form>
Please help..