<form method="get" action=..... >
Food <input name="food" type="text" size="1" />
Pizza <input name="pizza" type="text" size="2" />
Drink <input name="drink" type="text" size="2"/>
Now I want to pass a third variable which is a concatenation of food+pizza+drink in the URL
I don't want to create a new <input name="total" type="text" size="2"/>
Is this possible?
EDIT:
I want to do it before submitting the values.
I will have a url like
http://www.abc.com/&food=tasty&pizza=cheeze&drink=pepsi
I want the url to be
http://www.abc.com/&food=tasty&pizza=cheeze&drink=pepsi&total=tastypizzacheezepepsi
1121.