Re: [PHP] generate database driven web pages

2006-01-19 Thread Richard Lynch
On Tue, January 17, 2006 4:27 pm, Bing Du wrote: > Hello everyone, > > Here is what I want to accomplish. Query the backend database and > generate a page listing all the staff members in table format that has > name, title, phone and office address. Staff name should be a link. > Clicking the li

Re: [PHP] generate database driven web pages

2006-01-17 Thread Gerry Danen
Bing, I think I have implemented at http://www.arls-lilies.org/h/board.php what you are looking for. If so, let me know. On 1/17/06, Bing Du <[EMAIL PROTECTED]> wrote: > Hello everyone, > > Here is what I want to accomplish. Query the backend database and > generate a page listing all the staff

Re: [PHP] generate database driven web pages

2006-01-17 Thread Adi
you can also make it a hidden form variable that is updated dynamically when a 'staff' member is clicked before form subimmion. generated staff link: javascript: function sendForm(staffID) { document.myform.staffID.value = staffID; document.myform.submit(); } On 1/17/06, Bing Du <[EMAIL PRO

Re: [PHP] generate database driven web pages

2006-01-17 Thread John Nichel
Bing Du wrote: Hello everyone, Here is what I want to accomplish. Query the backend database and generate a page listing all the staff members in table format that has name, title, phone and office address. Staff name should be a link. Clicking the link should query the database again and u

[PHP] generate database driven web pages

2006-01-17 Thread Bing Du
Hello everyone, Here is what I want to accomplish. Query the backend database and generate a page listing all the staff members in table format that has name, title, phone and office address. Staff name should be a link. Clicking the link should query the database again and use the informat