Forum Moderators: open
Php function being called onclick for the submit button.
<?
function includeMe()
{
include 'freq.php';
}
?>
Submit Button
<input type="submit" value="Add Verbal Order" onclick="includeMe()">
Javascript Changing Iframe Values...
<script language="Javascript">
function AlterAction(value, id){
document.all.votypeframe.src=value + ".php?epid=" + id;
}
</script>
not sure if more information is needed ... anyone got any ideas?
Thanks!
Adam
name your windows and iframes, use javascript to send hidden values betwixt them, and use the "onsubmit" event. with some effort, a form and submit button on a parent page can also submit mirrored data found in an iframe.
good luck