Poking around with <STDIN>. Is this command only for command prompt type applications and not internet?
#! /usr/bin/perl
print ("What is your name?"
$name = <STDIN>;
($name); #removes new line character
print ("Hello, $name \n"
I am running this from my CGI bin on my internet server and it errors out. If I add the mime content line it prints but never prompts for input like the tutorial says it is supposed to. Any help is greatly appreciated. <i>Its okay to dream.....</i>
#! /usr/bin/perl
print ("What is your name?"
$name = <STDIN>;
($name); #removes new line character
print ("Hello, $name \n"
I am running this from my CGI bin on my internet server and it errors out. If I add the mime content line it prints but never prompts for input like the tutorial says it is supposed to. Any help is greatly appreciated. <i>Its okay to dream.....</i>