Hi, I have a PHP problem I need some help with.
I have an SHTML page, but need to embed a PHP file into it, but nothing I've tried works, here are a few ways I've tried but have failed (feel free to laugh):
<script src="http://www.url.com/file.php"></script>
<!--#include virtual="http://www.url.com/file.php"-->
<script language="JavaScript" src="http://www.url.com/file.php"></script>
<?php @include( 'http://www.url.com/file.php' ); ?>
<!--#include file="http://www.url.com/file.php" -->
Can anyone tell me the way to do it correctly?