sujith787
08-22-2007, 09:34 AM
hai
i have a mysql table named customer:
s.no name phone
----------------------------------
100 sam 2453
210 george 5637
98 mark 7382
i have a page name index.php
it displays s.no of the customer table like this
The source code is:
--------------------
<a href="phone.php">100</a>
<a href="phone.php">210</a>
<a href="phone.php">98</a>
ie output is
--------
100
210
98
phone.php page is simple. its displaying the phone number of clicked customer.
if a user click 100 phone.php should display 2453. (ie phone of s.no 100)
if a user click 98 phone.php should display 7382 (ie phone of s.no 98)
how can i do this.
i have a mysql table named customer:
s.no name phone
----------------------------------
100 sam 2453
210 george 5637
98 mark 7382
i have a page name index.php
it displays s.no of the customer table like this
The source code is:
--------------------
<a href="phone.php">100</a>
<a href="phone.php">210</a>
<a href="phone.php">98</a>
ie output is
--------
100
210
98
phone.php page is simple. its displaying the phone number of clicked customer.
if a user click 100 phone.php should display 2453. (ie phone of s.no 100)
if a user click 98 phone.php should display 7382 (ie phone of s.no 98)
how can i do this.