Gossamer Forum
Home : Products : DBMan : Customization :

Re: Search time on the time of the search

Quote Reply
Re: Search time on the time of the search In reply to
Good catch! I know why it didn't work. I just didn't think about it before.

Now take the code I posted before to convert the military time into regular time and put it in a subroutine:

Code:

sub convert_time {
my ($time) = $_[0];
insert the code from above
return $output;
}
In sub html_record, after

my (%rec) = @_;

add

Code:

for ($conv=9; $conv<=36; ++$conv) {
$rec{$db_cols[$conv]} = &convert_time($rec{$db_cols[$conv]};
}
That should convert all your times into the format you want.

Then we get to start working on the search. Smile

Can you give me a ballpark figure of how many records might be returned in a search for offices and hotlines that are currently open in a city? Let's say the search was done at noon on a Wednesday, when most things would be open. What would be the most that would be returned?

JPD
http://www.jpdeni.com/dbman/
Subject Author Views Date
Thread Search time on the time of the search wangs 4039 Jul 3, 2000, 2:05 AM
Thread Re: Search time on the time of the search
JPDeni 3957 Jul 3, 2000, 3:18 AM
Thread Re: Search time on the time of the search
wangs 3942 Jul 3, 2000, 8:01 PM
Thread Re: Search time on the time of the search
JPDeni 3955 Jul 4, 2000, 1:33 AM
Thread Re: Search time on the time of the search
wangs 3941 Jul 4, 2000, 2:49 AM
Thread Re: Search time on the time of the search
JPDeni 3915 Jul 4, 2000, 4:31 AM
Thread Re: Search time on the time of the search
wangs 3945 Jul 4, 2000, 6:20 AM
Thread Re: Search time on the time of the search
JPDeni 3935 Jul 4, 2000, 6:49 AM
Thread Re: Search time on the time of the search
wangs 3926 Jul 4, 2000, 3:31 PM
Thread Re: Search time on the time of the search
JPDeni 3920 Jul 5, 2000, 10:04 AM
Thread Re: Search time on the time of the search
wangs 3942 Jul 5, 2000, 11:24 AM
Thread Re: Search time on the time of the search
JPDeni 3929 Jul 5, 2000, 11:36 AM
Thread Re: Search time on the time of the search
wangs 3910 Jul 5, 2000, 11:52 AM
Thread Re: Search time on the time of the search
wangs 3926 Jul 5, 2000, 11:54 AM
Thread Re: Search time on the time of the search
wangs 3941 Jul 5, 2000, 12:00 PM
Thread Re: Search time on the time of the search
JPDeni 3918 Jul 5, 2000, 12:08 PM
Post Re: Search time on the time of the search
wangs 3918 Jul 5, 2000, 12:14 PM