I wrote this simple form, but I don't know theory about filling form. In future I want filling my form from MySQL, but now I need somehow test my form:
<table>
<tr>
<td><p style="text-align: right">name:</p></td>
<th><p style="text-align: left">',$name,'</p></th>
</tr>
<tr>
<td><p style="text-align: right">age:</p></td>
<th><p style="text-align: left">',$age,'</p></th>
</tr>
<tr>
<td><p style="text-align: right">place:</p></td>
<th><p style="text-align: left">',$place,'</p></th>
</tr>
</table>
So, I need replace $name, $age, $place in url like: http://test.mydomain.com/testform.php?name="Name Example"... How can I write/get url in correct form for result name: Name Example, not name: ',$name,'?