[PHP-WIN] Selecting date/time from an Access database

2003-11-25 Thread Metin Kale
Hello all.. I've been tasked to retrieve info from an Access database and I've been successful in selecting data and displaying it. But I do have a problem with DATE/TIME data. When I run a query asking for "TIME" data, I get the value "-1" returned. $conn = new COM("ADODB.Connection") or

Re: [PHP-WIN] Eliminate a specific session variable

2003-06-24 Thread Metin Kale
if you don't want to "nuke" your entire session, but want to completely get rid of your session variable, I've used this below and works pretty well: unset($myvariable); session_unregister("$myvariable"); metin At 02:40 PM 6/24/2003 -0400, Matt Babineau wrote: Hi All- I'm playing around with

RE: [PHP-WIN] Checkbox/Database Issues

2002-08-15 Thread Metin Kale
Did you use an element name like: element_name[] ? You need to add the [] to your element name. This creates an array and you need to loop through it to get each result. Metin At 02:26 PM 8/15/2002 -0500, Collins, Robert wrote: >Stephanie, > >can you give an example of your form and the co