in reply to Re: Re: MyInclude
in thread MyInclude

I use this kind of code in a sort of an html-template way: I first edit my html file with wysiwyg FrontPage.

Then add some comments with some special character, to later replace with a dessired chunk of values processed by Perl.

Then, at the script, I load the html file in a scalar and s/usbstitute the established comments with the fresh chunk of data processed with the script.

I don't need any module to do all these!

(Note: I am first trying to manage without the use of modules so as to learn the basics and common scripting habbits.

Later, when needing to speed up code creation, I am going to study some basic code implementation:)

Replies are listed 'Best First'.
Re: Re: Re: Re: MyInclude
by artist (Parson) on Jun 19, 2003 at 05:18 UTC
    (Note: I am first trying to manage without the use of modules so as to learn the basics and common scripting habbits. )
    What's wrong with making habits of using the modules first if available? May be the energy is spend correctly.

    artist