Hello,
I have a database filled with keywords and the program let you search for it. For example of my data:
[keywords]
quest,alien,campy,3d
What I want to do is let you search through the keywords. So I have the following:
$q=param('q');
if ($keywords =~/$q/i) { print "match"; }...