From my opinion ( I don’t know correct or not ), it use iframe with php in the page,
Test.html
Code: Select all
<iframe name="testFrame" id="testFrame" scroll="no" src=""></iframe>
<a href="execute.php" target="testFrame">Test it out</a>I already understand the tutorial from viewtopic.php?t=22620&highlight=iframe
The problem is how to apply the above scenario to my system? Use javascript?
Code: Select all
<script language="javascript">
function ValidateAccount()
{
SearchFrame.location.replace("validate.php?SearchField=" + escape(document.myForm.Account.value));
}
function LoadTopFrame(Account, Name, Address)
{
parent.top.myform.Account.value = Account;
parent.top.myform.Name.value = Name;
parent.top.myform.Address.value = Address;
}
</script>Anyone have face this kind of problem? Any comment can give me?
Thank to all for reply.