To register for an Internet.com membership to receive newsletters and white papers, use the Register button ABOVE.
To participate in the message forums BELOW, click here
PHPBuilder.com  
 

 

Go Back   PHPBuilder.com > PHP Help > Coding

Coding Help with PHP coding

Reply
 
Thread Tools Search this Thread Rate Thread Display Modes
Old 02-21-2010, 01:19 PM   #1
jaiffed
Junior Member
 
Join Date: Feb 2010
Posts: 2
value in variable in grid view type

I have this code for grid view

$query="select member_name from member where mem_id=$q && av=1";

$result= mysql_query($query,$link) or die("");

$fel=mysql_num_fields($result);
$nro=mysql_num_rows($result);

echo '<table border="2">';
echo "<td> Member Detail</td>";
while ($row = mysql_fetch_array($result)){
//loop through the rows
echo '<tr>';
//loop through elements (ie td's)
echo "<td>" . $row['member_name'] . "</td>";
}
echo '</tr>';

echo '</table>';

mysql_close($link);

?>

the output of this code is look like in HTML table:-

..................................................
| Member detail |
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
| Andy |
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
| Anne |
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
| Ronni |
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

but now the problem is that i want that if user click on Andy or any other name then the name of Andy come in the variable $mem_name for the next php page
which will i use to show full detail of selected player
what can i do to do this
please help me
jaiffed is offline   Reply With Quote
Old 02-21-2010, 04:56 PM   #2
dagon
RTFM it's a way of life.
 
dagon's Avatar
 
Join Date: Nov 2001
Location: N.Z
Posts: 4,374
PHP Code:
echo '<td><a href="page.php?id='.$row[id].'">' . $row['member_name'] . "</a></td>";
assuming you have an id field.
then on page.php you retrieve the id

PHP Code:
$mem_name=$_GET['id'];
and use that to display what you want.
dagon is online now   Reply With Quote
Reply

Bookmarks

Tags
grid, type, val, var, view


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT -4. The time now is 03:01 AM.








Acceptable Use Policy

Internet.com
The Network for Technology Professionals

Search:

About Internet.com

Legal Notices, Licensing, Permissions, Privacy Policy.
Advertise | Newsletters | E-mail Offers


Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.