should I start with cgi and perl? gawk? help!


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers should I start with cgi and perl? gawk? help!
# 1  
Old 10-30-2008
should I start with cgi and perl? gawk? help!

Hi all,

I must create a web page but I have no idea (yet) of writing html or php, so right now I'm lost in a bunch of acronyms and languages, and I don't know which one should I start to learn... so please, could you give me a recommendation?

The visitor to my web page should select an starting and ending date in a drop down list; these dates should be passed to a script; the script must select the data from an ascii database (a temporal evolution of a given parameter) and write the selected data in a new file; this new file should be plotted (with gnuplot); and finally the plots should be published in the website.

Right now it seems impossible to me, but I think I will struggle through these steps AT LEAST if I know where I have to start!!! Smilie)) Should I use html with cgi? Does it worth to learn perl, or awk is enough? Should I start with html or php? MySQL?

Thanks from a (absolutely) confused newbie!!! Smilie
# 2  
Old 10-30-2008
Well I guess you need to find out the relative strengths & weaknesses of these technologies and match them to your needs accordingly... I'm not a web expert, but I know we have done this type of thing with perl+cgi+html. Personally I am using shell scripts rather than Perl; but this is purely so that I can improve my native scripting skills. From what I understand Perl is the shtuff for text-processing and provides good abstraction from some tricky scripting stuff, so you might wanna go Perl rather than shell scripts.

Also, Perl is definitely worth learning if you will be doing this kind of thing at all in the future. And remember, most people don't know where to start - just take baby steps until it either comes together or falls apart (in which case you may need to try some different tech; or post your problem here).
# 3  
Old 10-31-2008
Thanks dan-e,

I'm actually starting to bit pieces of these languages on different websites, but maybe few of you have done this before and went through the steps before me... and your opinion is very helpful!

So thanks for your post!
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. OS X (Apple)

Perl CGI

I am trying to get my MacBook Pro with 10.8 Mt Lion set up to run Perl CGI scripts. Having a problem. I can start Apache Web Server with no problems. Why do I put the static and dynamic scripts? I which directory? I have looked at this article:... (3 Replies)
Discussion started by: djehresmann
3 Replies

2. Shell Programming and Scripting

CGI Perl : while loop in CGI perl

Hi Team, I am trying to connect to database(succeeded ) and print the records on the browser using while loop. But the elements of array are not displayed instead while loop is displayed directly. Instead of the below I can embed html statements in print but I am looking for the below style as I... (1 Reply)
Discussion started by: scriptscript
1 Replies

3. Shell Programming and Scripting

Perl CGI : unable to download the excel sheet from perl cgi page

Hi All, I have written an cgi perl script that displays an image(Excel image) and when clicked on that Image I need to download a excel sheet. I made sure that excel sheet exists in the folder with the given name but still I am not able to download the sheet. print "<center><table... (2 Replies)
Discussion started by: scriptscript
2 Replies

4. Shell Programming and Scripting

Perl cgi pages out of cgi-bin folder in WINDOWS

Hi team, I have a typical problem with cgi pages in apache webserver in WINDOWS I am able to execute(display) the pages that are saved in cgi-bin folder. But I am not able to execute the pages stored in htdocs or other folder other than cgi-bin folder. Could anyone please let me know how... (1 Reply)
Discussion started by: scriptscript
1 Replies

5. Shell Programming and Scripting

CGI in Perl

Hi, Am unfamiliar with using CGI modules in Perl. Though i checked in few sites about CGI , i dint get a clear idea. Can anyone please explain me the purpose of these statements, it ll be very helpful to me #!/usr/bin/perl use CGI qw/:standard/; use Storable; use Data::Dumper; my... (1 Reply)
Discussion started by: irudayaraj
1 Replies

6. Web Development

problem with exporting vairable from one perl cgi to another perl cgi script while redirecting.

Can anyone tell me how to export a variable from one perl CGI script to another perl cgi script when using a redirect. Upon running the login.pl the user is prompted to enter user name and password. Upon entering the correct credentials (admin/admin) the user is redirected to welcome page. My... (3 Replies)
Discussion started by: Arun_Linux
3 Replies

7. Shell Programming and Scripting

gawk to perl

Hi all I’m looking for a perl equivalent to this command string I need to imbed this in a existing perl script cat file1 | gawk -F"|" '{print $1","$2,",",$3,",",$11 >> "new-file"}' Thank you (4 Replies)
Discussion started by: Ex-Capsa
4 Replies

8. Shell Programming and Scripting

CGI , Perl and Trees

I have been trying to get this for weeks now but maybe someone knows or has a snippet of code to display a collapsible tree view. something like this: +Yahoo! -/site.html -/site2.html +Google -/site.php -/site2.php (1 Reply)
Discussion started by: Dabheeruz
1 Replies

9. UNIX for Dummies Questions & Answers

Apache Perl/CGI

Can any body help me with apache and cgi i'dont know how iconfigure apache to use cgi... and when i try to start apachectl it says there is no file... please help me...i have apache installed... (1 Reply)
Discussion started by: CreamHarry
1 Replies

10. Shell Programming and Scripting

Perl CGI.pm

my box is FreeBSD4.3 and I use Perl 5.0005_03. Here is the CGI script. test.cgi ...... if ($query->action eq 'detail') { ...... print $query->hidden('action', 'modify'); ...... } I found that the result of test.cgi?action=detail is not what I expected. the script does not... (4 Replies)
Discussion started by: tonyt
4 Replies
Login or Register to Ask a Question