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 strongm 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. mossv2

    Output table

    No. If I print $f[1] after $num then it prints the correct value. It just doesn't seem to be doing it inside the for loop.
  2. mossv2

    Output table

    Doing it that way still fails to print anything in the table.
  3. mossv2

    Output table

    ... ... if($Q::host1 != "") { push (@f,$Q::host1); } if($Q::host2 != "") { push (@f,$Q::host2); } $num = scalar @f; print "<table>"; print "<tr bgcolor='blue'> <td><font face='arial' size='2' color='white'><b>host</b></td> </tr>"; for ($i = 0; $i <= ($num - 1); ++ $i) { $vv =...
  4. mossv2

    Data not being saved

    There are three Perl scripts and the third one should operate on data but isn't. 2.pl should create a file /var/www/data/$username.txt which it doesn't do. 0.pl #!/usr/bin/perl use CGI; $query = new CGI; print $query->header; print $query->start_html(-title=>'Password'); print "<FONT FACE...
  5. mossv2

    HTML forms and cgi

    The CGI forum doesn't appear to have much activity, so I'm posting this to the Perl forum. When "Append" is clicked I want to save each record, and when "Finished" is clicked it will output a page with each record that was entered as shown in the above example. I am not having a problem doing...

Part and Inventory Search

Back
Top