hello,
i have problem with this code:
i want when someone click the button to use the url
but the problem is the url is the same in all the buttons
can someone tell me the error
HTML Code:
<form action="url1.html"><input type="submit" value="Click Me1" />
<form action="url2.html"><input type="submit" value="Click Me2" />
<form action="url3.html"><input type="submit" value="Click Me3" />
<form action="url4.html"><input type="submit" value="Click Me4" />
<form action="url5.html"><input type="submit" value="Click Me5" />
<form action="url6.html"><input type="submit" value="Click Me6" />
<form action="url7.html"><input type="submit" value="Click Me7" />
the code supposed to go to url1 when the user click at click me1,
url2 when the user click at click me2
url3 when the user click at click me3
but in the code above if i click in any button i'll go to url1 !!!
Help!!!!
|