Library item: out of date?

Out of context: Reply #3

  • Started
  • Last post
  • 15 Responses
  • ********
    0

    Yeah - simple PHP will save you. It's more efficient than a DW library item.

    It's easy too - you just need to call the file by an include;

    <? include 'mynav.php'; ?>

    or a require;

    <? require 'mynav.php'; ?>

    Require will fail if the file isn't found.
    Include will just throw an error but the page will still load...

View thread