Re: Path of root directory on production server

2001-10-23 Thread RoadRaat
In a message dated Tue, 23 Oct 2001 1:16:49 AM Eastern Daylight Time, tom poe [EMAIL PROTECTED] writes: $pwd = `pwd`; print The Password is: $pwd\n; Huh? I don't get it. pwd doesn't mean password. It's present working directory. And how can you not know the path you need on a

Re: ultimate stupidity

2001-10-13 Thread RoadRaat
In a message dated 10/8/01 12:06:09 PM Eastern Daylight Time, [EMAIL PROTECTED] writes: REMEMBER... = != == ! You know, there's another way to avoid that mistake if you're willing to change your style a little bit. In all logical tests, put the variable on the RIGHT side. if (5

Re: CGI br

2001-10-04 Thread RoadRaat
In a message dated Thu, 4 Oct 2001 10:21:27 AM Eastern Daylight Time, [EMAIL PROTECTED] writes: when writing to a console, you simply use \n to move to the next line but using the same code in a browser I get everything on the same line. is there a way that when writing to HTML, the \n

Re: Please Stop (was: Re: eval problem)

2001-10-04 Thread RoadRaat
In a message dated Tue, 2 Oct 2001 6:03:06 PM Eastern Daylight Time, Curtis Poe [EMAIL PROTECTED] writes: Mea Culpa. While I do have some reservations about how prototypes were used in a particular example, I'll try to be more sensitive about the beginners aspect of things. Curtis,

Free CGI hosting?

2001-10-02 Thread RoadRaat
Are there free web-hosts or free Unix shell accounts with hosting that also provide CGI capability? Thanks, Nelson -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Inserting into the middle of arrays

2001-09-26 Thread RoadRaat
In a message dated Mon, 24 Sep 2001 10:07:45 AM Eastern Daylight Time, Pete Sergeant [EMAIL PROTECTED] writes: How do I insert $scalar into position $x of @array, where $x is smaller than $#array? What about... #!/perl # Script: insert # Author: Nelson Fleet # Date: 09/26/2001 #