Shawn Caldwell writes ..
>I am having a problem with a script I'm writing for a search button.
>it works just fine except when I'm searching for a part number with a
>letter in it. I am searching through a comma delimited database. If
>I have A35CH5 and A22F4, and I search for A22F4, my script wi
I would try altering your loop and rewrite it like so:
#!/usr/bin/perl
require("cgi-lib.pl");
print "Content-type: text/html\n\n";
$header = "/usr/home/m/ma/mayline/mayline.com/testnav.html";
unless(open(DAT, "../pricelist.db")) {
die, "Cannot Open File: pricelist.db" };
@data = ;
close(DAT);
pr