Jump to content

Fetch User names


bondja

Recommended Posts

Hey, I just got this script for a gaming ladder for like $10 bucks, and it was good bargain but I'm wanting to add features to it, right now i'm trying to figure out how to fetch the user names from the mysql database and put them in the table.  I know what the code means and I understand it, i just don't know how to lpace it together, help would be amazing.
Link to comment
Share on other sites

maybe this will help

[code=php:0]
<table border="0" width="100%">
  <tr>     
<td width="33%"><b>Username</b></td>
<td width="33%"><b>Email</b></td>
<td width="34%"><b>some_info</b></td>
  </tr>
<?php
include('db.php');
$sql = "SELECT username, email, some_info From your_table";
$get_users = mysql_query($sql);
if (!$get_users) {
   echo "Could not successfully run query ($sql) from DB: " . mysql_error();
   exit;
}
if (mysql_num_rows($get_users) == 0) {
   echo "
        <td><font color=\"#FF0000\">*Your have no members</font></td>";
   include('yourpage.php');
   exit;
}         
while ($rw = mysql_fetch_assoc($get_users)) {
echo '
<tr>
<td width="33%">' . $rw['username'] . '</td>
<td width="33%">' . $rw['email'] . '</td>
<td width="34%">' . $rw['some_info'] . '</td>
</tr>';
}
mysql_free_result($get_users);
?>[/code]

hope this helps
Link to comment
Share on other sites

then change it to this

[code=php:0]$sql = "SELECT teamid, whatever, some_info From members";[/code]

of course you will change this throughout the script. After the SELECT you put what you are searching for in the database and after FROM is the table that you are searching.
Link to comment
Share on other sites

Could not successfully run query (SELECT teamid, From members) from DB: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'From members' at line 1

I have

<table border="0" width="100%">
<tr>
<td width="33%"><b>Username</b></td>
<td width="33%"><b>Email</b></td>
<td width="34%"><b>some_info</b></td>
</tr>
<?php
include('config.php');
$sql = "SELECT teamid, From members";
$get_teamid = mysql_query($sql);
if (!$get_teamid) {
  echo "Could not successfully run query ($sql) from DB: " . mysql_error();
  exit;
}
if (mysql_num_rows($get_teamid) == 0) {
  echo "
        <td><font color=\"#FF0000\">*Your have no members</font></td>";
  include('html.php');
  exit;
}       
while ($rw = mysql_fetch_assoc($get_teamid)) {
echo '
<tr>
<td width="33%">' . $rw['teamid'] . '</td>
<td width="33%">' . $rw['email'] . '</td>
<td width="34%">' . $rw['some_info'] . '</td>
</tr>';
}
mysql_free_result($get_teamid);
?>
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.