Im sorry maybe its off topic but i want to ask something about using frames with php
i have a frame page like this
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Admin Paneli</title>
</head>
<frameset rows="*" cols="*,632" framespacing="0" frameborder="no" border="0" bordercolor="#FFFFFF">
<frame src="adminmembers.php" name="mainFrame">
<frame src="haber.php" name="rightFrame" scrolling="NO" noresize>
</frameset>
<noframes><body>
</body></noframes>
</html>
and as you see this frame has 2 php files which named adminmembers.php and haber.php and i want when i click a link in adminmembers.php(which is main frame)haber.php(which is right frame) to be changed
is something like that possible if it is how?
how should i link it from adminmembers.php?
Thanks?