Reading a file

2002-03-29 Thread Octavian Rasnita
Hi all, I try to read a binary file using $/ =" "; while () { } I want to read until the next space and that is why I used $/=" "; but in fact I would like to read until the next space, or the next > or the next <. Can I do this? If yes, please advice how. Thanks. Teddy, My dear email ad

I need Help with these?

2002-03-29 Thread Andrew Rosolino
I need to knoww what each one of these do. use strict; use CGI qw(:standard); use CGI::Carp; use DBI; CGI::use_named_parameters(1); Thank You, Andrew __ Do You Yahoo!? Yahoo! Greetings - send holiday greetings for Easter, Passover http://greetings

RE: I need Help with these?

2002-03-29 Thread Scot Robnett
First, it will probably help more to read the Perl documentation: perlfunc perldoc CGI.pm perldoc Carp.pm perldoc DBI.pm use strict; # Makes you declare variables before you can use them. # Creates a less flexible coding environment but forces # you to think t

RE: I need Help with these?

2002-03-29 Thread Michael Gargiullo
use strict; <--You must declare everything use DBI; <--Database conectivity -Original Message- From: Andrew Rosolino [mailto:[EMAIL PROTECTED]] Sent: Friday, March 29, 2002 1:08 PM To: Perl Help Subject: I need Help with these? I need to knoww what each one of these do. use strict; us