Dreamweaver > can this be done? [message #178566] |
Mon, 02 July 2012 13:24 |
Ted
Messages: 1 Registered: July 2012
Karma: 0
|
Junior Member |
|
|
i have table:
a b
| customer id | customer name|
1. column a: when i select rsCustomer, column B will display customer
name.
Thanks... sorry nob.
|
|
|
Re: Dreamweaver > can this be done? [message #178568 is a reply to message #178566] |
Mon, 02 July 2012 13:38 |
Jerry Stuckle
Messages: 2598 Registered: September 2010
Karma: 0
|
Senior Member |
|
|
On 7/2/2012 9:24 AM, Ted wrote:
> i have table:
> a b
> | customer id | customer name|
> 1. column a: when i select rsCustomer, column B will display customer
> name.
>
> Thanks... sorry nob.
>
You need to write a script to do it.
What have you tried so far?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex(at)attglobal(dot)net
==================
|
|
|
Re: Dreamweaver > can this be done? [message #178570 is a reply to message #178566] |
Mon, 02 July 2012 13:51 |
The Natural Philosoph
Messages: 993 Registered: September 2010
Karma: 0
|
Senior Member |
|
|
Ted wrote:
> i have table:
> a b
> | customer id | customer name|
> 1. column a: when i select rsCustomer, column B will display customer
> name.
>
If you want to do that without hitting some sort of submit form, you
need to use javascript.
> Thanks... sorry nob.
--
To people who know nothing, anything is possible.
To people who know too much, it is a sad fact
that they know how little is really possible -
and how hard it is to achieve it.
|
|
|
Re: Dreamweaver > can this be done? [message #178571 is a reply to message #178566] |
Mon, 02 July 2012 14:23 |
Jeff North
Messages: 58 Registered: November 2010
Karma: 0
|
Member |
|
|
On Mon, 2 Jul 2012 06:24:41 -0700 (PDT), in comp.lang.php Ted
<tlacson7(at)gmail(dot)com>
<dcce0f9b-a0ef-413f-ac06-dbb1c21a1025(at)f8g2000pbf(dot)googlegroups(dot)com>
wrote:
> | i have table:
> | a b
> | | customer id | customer name|
> | 1. column a: when i select rsCustomer, column B will display customer
> | name.
> |
> | Thanks... sorry nob.
You haven't given us much to go on here.
Is the table a database table or a table on the web page?
If it is a database table then you will need to:
a. connect to your database
b. issue the SQL statement
SELECT * FROM rsCustomer
c. process the returned information for displaying on the web page
If the table is on a web page the you will need to use javascript to
update the display with the relevant information.
|
|
|