i am new to php nd i just wanted to know whether we can perform both frameset tag nd form tag at a time in php.my program is in given below for a login form:
<html>
<head></head>
<frameset rows="25%,*">
<frame name="top"src="f1.html">
<frameset cols="25%,*">
<frame name="left"src="f2.html">
</frameset>
</frameset>
<body>
<body bgcolor="pink">
<form method="get" action="welcome.php">
<b>loginID</b><input type="text" name="loginID" size="30">
<br>
<br>
<b>password</b><input type="text" name="password" size="30">
<br>
<br>
already a user
<br>
<a href=f3.php>new user register</a>
</form>
</body>
</html>.