Hello,
I am newbei to webdesgin with php and javascript. What I want to ask may be more related to javascript but I thought I may ask it here since maybe some of you have encountered this problem as you worked with php.
My goal is to make a web page with two frames. One has buttons and the other has a php code. If these buttons were on the same page as the php code they would be like:
<INPUT TYPE=SUBMIT NAME="full" VALUE="Go" SIZE=2>
However I want to have these buttons on the other frame, thus control the php code from the other frame. When this button is pressed the php code page will reload and because of if(isset(HTTP_POST_VARS["full"]) some other operation will take place in the php code, which has no importance for me at the moment.
I learn how to do this with links. Link targets something like phppage.php?full=go
How do I do it with button?
Thanks in advance....
Murat Isik