Mih_Flyer
Dec 28th, 2001, 05:10 PM
hello, if i have this code:
<head>
<script language="vbscript">
sub msg(message as string)
msgbox(message)
end sub
</script>
</head>
<?
/*some php code here...
if ($op="blah blah")
{
\* call msg sub of vbscriot
}
?>
now how do i call the sub inside php?
<head>
<script language="vbscript">
sub msg(message as string)
msgbox(message)
end sub
</script>
</head>
<?
/*some php code here...
if ($op="blah blah")
{
\* call msg sub of vbscriot
}
?>
now how do i call the sub inside php?