Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. lilkal

    form creation submit button

    hii...thanx guyzz... got it!!! i replaced @results=$exc->fetchrow_array(); @arr=@results; with $i=0; while(@results=$exc->fetchrow_array()) { $arr[$i]=$results[0]; $i+=1; }
  2. lilkal

    form creation submit button

    hii..i actually modified the code this way.. #!/usr/local/bin/perl use CGI::Carp qw(fatalsToBrowser); use CGI; use DBI; my $cgi=new CGI; print $cgi->header('text/html'),$cgi->start_html(-title=>'students'); print $cgi->center("GENOMES")...
  3. lilkal

    form creation submit button

    i tried to define the form directives normally like name='querry' and i got this error message: Can't modify constant item in scalar assignment at db_search.cgi line 11, near "'querry')" So i defined it as a var and got the output right. But i dint actually try to use the name later on in my...
  4. lilkal

    form creation submit button

    hi..i am trying to create a form having text field,checkboxes,radio buttons and submit reset buttons. I need to search my database for the given word when the submit button is clicked. I was able to create the form but i dont know how to pass the word the user entered in order to check the...
  5. lilkal

    new to perl...need some help with cgi and dbi

    hii.. i am new to perl and im given an assignment.So im trying to know as much as i can.I just wanted to know how we can create a pop up menu with 25 options.The options are entered in a table.Now how can i retrieve those options and make the pop up menu without having to write each option by...
  6. lilkal

    new to perl..really need help !!! perl cgi & dbi

    thnx for the tip.. i tried CGI and was only able to display the text fields,check boxes,submit n reset etc..im done with the first part.. but i have no clue how to how to do the secong part..
  7. lilkal

    new to perl..really need help !!! perl cgi & dbi

    hii..i am new to perl and i know the basics in perl regarding the variables,arrays and all..what i need to do is create an interface to my database using PERL, PERL CGI, and PERL DBI. I already created a mysql database.Now I need to create a web-interface for the database using PERL CGI and the...

Part and Inventory Search

Back
Top