Active 'back' buttons

2004-03-29 Thread Rob Dixon
Hi guys. What's the 'usual' way (if there is one) of implementing an 'active' back button (which does the equivalent of the browser's back button but is implemented in CGI code)? If, say, I'm doing a database search and come up with a list of records, each of which can be clicked on to provide

Re: Laying Out HTML Forms

2003-10-16 Thread Rob Dixon
Casey West wrote: It was Wednesday, October 15, 2003 when Rob Dixon took the soap box, saying: : Does anyone know of a tidy way to go about the tedious : business of laying out HTML forms using enclosing table : tags? I admit that the internals of CGI::FormBuilder are less than desirable

Laying Out HTML Forms

2003-10-15 Thread Rob Dixon
Does anyone know of a tidy way to go about the tedious business of laying out HTML forms using enclosing table tags? Thanks, Rob -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Date to seconds

2003-09-17 Thread Rob Dixon
Kit-Wing Li wrote: Does anybody know of a quick method in perl to turn a date string into its equivalent in seconds, include milliseconds if possible? Ex: 20030910 13:50:25.6 to 1063202644. Thanks much! The Date::Manip module will do it for you easily, as long as you're not worried about

Re: using an AND operator

2003-01-11 Thread Rob Dixon
Hi Susan Susan Aurand [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Is there an AND operator in perl? For example; if ($SRF=1 and $SRL=1) {printYES;) Any help would be appreciated. Thank you - Susan What you've written will work as it is, except that