Jump to content

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;
}

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.