I’m trying to include a page that contains html plus a web form into this php function. I’m sure you’ll be able to easily spot my failed attempt to include it. the optin.php page.
[php]
function get_video($postID) {
if( function_exists(‘p75GetVideo’) ) {
$video = p75GetVideo($postID);
$optin = “optin.php”;
return $video ? “
}
return “”;
}
[/php]
Any help is greatly appreciated.