Question about the way php is being imported;
I updated the file needed for php importing, one thing I did not like
was that it separated php tags in 2 separate files instead of keeping
them together in the same section.
let me explain;
Example code of what happened, [code section name imported within
brackets]:
@file fileexample.php
[site declarations] <begins leo section>
<?php
/*
Choice of language for website yes/no
*/
$ADD_LANGUAGE_CHOICE = 'yes';
?>
<?php /* Contact information */
$domain = "domain.com";
$company = "Company Name";
?>
<?php /* Content Script; include tag reads .htm files in Content
Directory */
<ends leo section>
[include] <begins leo section>
include('language.php');
?>
<ends leo section>
============
How come the initial <?php import tag was not included within
[include] instead of being imported as the last code of [Site
Declarations]??
Thank you
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"leo-editor" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/leo-editor?hl=en
-~----------~----~----~----~------~----~------~--~---