I want to pass the value 9112232453 one text field to another.
I know that I need Javascript for this, but I donβt know how to do it.
HTML
<form method = "post" action=""> <input type="checkbox" name="phone" value="9112232453" onclick='some_func();' > <input type="text" name="phone" value="" id="phone"> <input type="submit" name="Go"> </form>
Then later I want to use the value in my php.
user5377415
source share