file io and html

2003-06-28 Thread fuzzy
i need to know how do file i/o. i know c, c++, php, 5 different vb, so i'm not new to programming, just to perl. i'm going to be send stuff to this script using a html form via ACTION=, so i need to know how to pull them in, smush them into a string in a format and write it (in append mode)

Re: file io and html

2003-06-28 Thread Shlomi Fish
On Sat, 28 Jun 2003, fuzzy wrote: i need to know how do file i/o. i know c, c++, php, 5 different vb, so i'm not new to programming, just to perl. i'm going to be send stuff to this script using a html form via ACTION=, so i need to know how to pull them in, smush them into a string in a

Re: file io and html

2003-06-28 Thread John W. Krahn
Fuzzy wrote: i need to know how do file i/o. perldoc perlopentut perldoc perlsyn i know c, c++, php, 5 different vb, so i'm not new to programming, just to perl. i'm going to be send stuff to this script using a html form via ACTION=, so i need to know how to pull them in, smush them

Re: file io and html

2003-06-28 Thread John W. Krahn
John W. Krahn wrote: Fuzzy wrote: in php i would use $outout = sprintf(%s,%s,%s,\%s\, $date, $time, $file, $title); It is exactly the same in perl. Or you could write it like this: $outout = sprintf '%s,%s,%s,%s', $date, $time, $file, $title; Or like this: $outout = join ',',