B
Brandon
Guest
I have two textfields lets say in one I have cow in the other I have bell. Can I have that go to a third field thats Cowbell?
<input type="text" name="whatever">
<input type="text" name="hmmha">
...
$value1 = $_POST['whatever'];
$value2 = $_POST['hmmha'];
$joinedval = $value1.$value2;
...
I have two textfields lets say in one I have cow in the other I have bell. Can I have that go to a third field thats Cowbell?