Old 06-17-2005   #1 (permalink)
Registered User
 

Join Date: Jun 2005
Posts: 7

Php Code

I need a php/mysql code to display all the members from a table(from the membership script) so display all members that registred, how do i do that?
Denial is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Old 06-17-2005   #2 (permalink)
Registered User
 
scrowler's Avatar
 
Snake Champion!
Join Date: Feb 2004
Location: New Zealand
Posts: 590
Images: 7

Send a message via MSN to scrowler
Code:
<?php

mysql_connect("localhost","username","password");
mysql_select_db("database_name");

$query = mysql_query("SELECT * FROM UsersTable");
while($row = mysql_fetch_assoc($query)){
echo $row["Username"] . "<br />\n";
}

?>
__________________
BioRUST Tutorials - the birthplace
scrowler is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Closed Thread

Thread Tools
Display Modes

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 On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Worpress Code help altus HTML / PHP / ASP / JS 2 04-02-2008 02:11 AM
Code Issues SaikonoYume HTML / PHP / ASP / JS 3 04-21-2007 06:48 PM
Code DevineBabyGurl HTML / PHP / ASP / JS 2 09-26-2006 10:40 AM
Two code requests Denial HTML / PHP / ASP / JS 3 06-14-2005 06:32 AM
Scroll bar code Stiker HTML / PHP / ASP / JS 9 04-19-2004 01:44 PM


All times are GMT +1. The time now is 07:53 PM.

Powered by vBulletin Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.3.2

Design & Content © BioRUST 2008 :: PRIVACY STATEMENT :: LEGAL INFORMATION :: ADVERTISING MEDIA KIT