I am trying to add whatever is given as input for the input tags with id “tid” and “split_fraction” as additional paramaters on my link. How would I do this?
<span>Id:</span><input id="tid" size = "6">
<span>Split fraction</span><input id="split_fraction" size = "6">
<a href=/test?Rule_Type=tid&mid=3&cid=4" >Add</a>
Actually, you need to reformat your form.
What I changed
<span>s to<label>s which better describe thelabels for your inputs, also using GET
<button>which better describes what you want to do. You may also use<input type="submit">