Jump to content

[SOLVED] What to use instead of include?


leomoon

Recommended Posts

Hi, I was wondering is there any other way to have the same function as include?

My server recently disabled include so I can't use that anymore and they told me I can use fopen. I searched on the net but I don't seems to be able to make it work!!!

 

What I want to do is SO SIMPLE.

I just want to render a header inside the main php page.

What I had before was (to load a menu):

<?php include("http://leomoon.net/static/topmenu.html"); ?>

 

Tnx. Waiting for your reply.

Link to comment
https://forums.phpfreaks.com/topic/78378-solved-what-to-use-instead-of-include/
Share on other sites

well just wrote this function not too sure it will work tho havn't got my server to test it let me know

 

function include_custom($strFilename)
{
$strContent = file_get_contents($strFilename);
eval($strContent);
return 1;
}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.