Re: [PHP-DB] data picker

2006-02-13 Thread Julien Bonastre
there are many ways to skin a cat here are the first few suggestions or plans of attack I would look at: a) the popup window calls upon a form/page which once a value is selected sends the value back to the parent window via javascript and closes popup or something b) use a session

RE: [PHP-DB] data picker

2006-02-13 Thread Bastien Koert
via javacript is the best for user experience Path will be something like window.opener.form_name.document.getElementById(field_name).value = Pop-up_value; Bastien From: r0md0n1 [EMAIL PROTECTED] To: php-db@lists.php.net Subject: [PHP-DB] data picker Date: Mon, 13 Feb 2006 17:00:11

Re: [PHP-DB] data picker

2006-02-13 Thread r0md0n1
if use option a, i wouldn't access my database... CMIW :) or you have another plans to access database via javascript? ( FYI, i run MySQL v4.0.24-10 with PHP v4.3.10-15 @ Debian linux ) maybe at another case (datepicker) we can use javascript. i'll try the 2nd option ask another question(s)