How to include php pages in drupal without changing the php code so that dynamically content can be generated.Any process is ok.But i don't want to do the coding in drupal
2 Answers
- Make sure your PHP file is very secure as you're opening a potential hole in your Drupal system.
- Activate the PHP Input filter for your admin editor profile. (Don't give untrusted users access to this editor!)
- Edit your Content Item.
- Add something like <?php include('/path/to/my/very/secure/file.php'); ?>
- Save.