Hi,
I am trying to get this to work but I think the first php include just
overrides all. I am sure there is a better way to go about this, but i need to stick with this format for the time being. Thanks,
Chuck
<script language="JavaScript">
if (confirm("Include PHP file somefile.php?"))
{ </script>
<?php
include("somefile.php");
?>
<script language="JavaScript">
}
else
{
</script>
<?php
include("someotherfile.php");
?>
<script language="JavaScript">
}
</script>