×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
Hi Larry, Jim, Joel,
*** In addition to echo you can also use: include, include_once, require or
require_once, to bring in the contents of another file...which could contain
straight HTML or code to produce HTML.
See
http://devzone.zend.com/manual/function.require.html.
This is an excellent way to modularise your code...i.e. a change to the
included/required file is rippled throughout all files that include/require
it, e.g:
In this example skel_A.php requires somemodule.php:
*** somemodule.php
<!--somemodule.php
<p>Hello - I am from somemodule</p>
-->
*** skel_A.php:
<html>
<body>
<!-- Indent: ONE TAB -->
<?php require('somemodule.php');?>
</body>
</html>
*** Output (view source)
* skel_A.php
<html>
<body>
<!-- Indent: ONE TAB -->
<!--somemodule.php
<p>Hello - I am from somemodule</p>
-->
</body>
</html>
*** BTW - you can also use print() instead of echo():
http://www.faqts.com/knowledge_base/view.phtml/aid/1/fid/40
Cheers,
Simon
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact
[javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.