Jump to content

[SOLVED] make a php include so it can be called from a variable,


Recommended Posts

hi guys, i have a really long include eg,

include "folder1/folder2/folder3/folder4/folder5/folder6/file.php";

 

and i want to make it so i can just call the include from a variable,

 

eg type

echo $file;

 

and it will run the include at the moment i have

$file = "include "folder1/folder2/folder3/folder4/folder5/folder6/file.php";";

it simply outputs

include "folder1/folder2/folder3/folder4/folder5/folder6/file.php";

 

 

thanks

echo outputs to the browser. you are looking for eval(). but better yet,

 

<?php
$theInclude = 'folder1/folder2/folder3/folder4/folder5/folder6/file.php';

// code

include "$theInclude";

 

not sure you need the quotes around it...

 

PhREEEk

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.