Simple Array Question

2001-07-15 Thread Douglas Brantz
Simple question: Using multiple checkboxes and assigning the value from mysql field with. a loop showing all the data I need. I am created a form to delete selected users from database. So I loop through all the ids and this is the checkbox line. not exactly but close. print ""; in perl Now I n

Help with Code

2002-01-27 Thread Douglas Brantz
Hello, Could someone help me with a bit of code to output data from mysql in a formated way in a text box. This might not be the list to ask and if not please direct me in the right direction. I'm writing in Perl. Here is a sample of the code. my @arrinstr=(); my $list=""; while (@arrinstr = $s

Help with formating data in textarea

2002-01-27 Thread Douglas Brantz
Sorry to bother again but does anyone know how to do the following? I'm interested in learning more about the following: The only reason I'm writing to this list is that I've had such great help in the past and I've been looking for new ways of displaying data from mysql so why not go to the sou

Please Help with Pattern Matching

2002-01-29 Thread Douglas Brantz
I have a big problem with pattern matching; Why does the first example work like this I need to find everything with MWF in it and I only get the 1 entry? Is there a way I can make this work. mysql> select schdays from courses where schdays LIKE "%MWF%"; +-+ | schdays | +-+ | MWF

Pattern Matching Problem

2002-01-29 Thread Douglas Brantz
Hello, I have a big problem! I need to match all patterns in schdays from a variable schdays and if schdays = mwf it only turns up mwf and not all entries containing M, W or F. Is there a way to do this? mysql> select schdays from courses where schdays LIKE "%MWF%"; +-+ | schdays | +-

Pattern Matching Solved

2002-01-29 Thread Douglas Brantz
alachian State University Boone, NC 28608 828-262-6549 (office) 828-262-6312 (fax) -Original Message- From: Gurhan Ozen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 29, 2002 3:24 PM To: Douglas Brantz; [EMAIL PROTECTED] Subject: RE: Please Help with Pattern Matching Doug, MySql is

RE: Pattern Matching Problem Solved

2002-01-29 Thread Douglas Brantz
CTED]] Sent: Tuesday, January 29, 2002 3:46 PM To: Douglas Brantz; [EMAIL PROTECTED] Subject: RE: Pattern Matching Problem SELECT schdays FROM courses WHERE (schdays LIKE "M") OR (schdays LIKE "W") OR (schdays LIKE "F") Matthew Walker Ecommerce Project Manager Mountain