Lukeidiot Posted May 12, 2008 Share Posted May 12, 2008 Heres the code im currently in progress with: Cpanel.php: ( http://lockpick.lukeidiot.com/?go=cpanelpreview ) <p><strong><strong> <? $_SESSION['username'] = $username; echo 'Welcome <b>'. $_COOKIE['username'].'</b><br />'; ?> <?php $iplog = $_SERVER['REMOTE_ADDR']; $sql = mysql_query("SELECT * FROM users"); while($result = mysql_fetch_array($sql)) { if (!empty($online['id'])){ # Check to see if they're logged in echo 'Welcome <b>'.stripslashes($online['username']).'</b><br />'; # An example of how to display the browsing members name } else { # Else, they are not logged in. echo 'You must be logged in to access this page.'; ?> </strong>Profile</strong> | <strong><a href="?go=memberlist">Memberlist</a></strong> | <strong><a href="?go=logout">Logout</a></strong><br> <strong><br> Account Type: </strong>Admin/Staff/Moderator/Customer <strong><br> Job Position:</strong> <?php echo 'Account type: <b>' .$result['type'] . '</b>'; }?><br> <strong>Job Status:</strong> Accepted <br> <strong>Payout</strong>: $<?php echo '<b>'.$result['payout'] . '</b>'; }?><br> <strong>Signup Date:</strong> <?=$signup?> <br /> <strong>IP Logged: </strong><?php echo '$iplog';?><br> <strong>Resume:</strong> http://lockpick.lukeidiot.com/upload/example.doc</p> And it displays this: User Selected: Lukeidiot Account type: AdminAccount type: CustomerAccount type: CustomerAccount type: CustomerAccount type: Customer Any idea why this is happeing? Link to comment https://forums.phpfreaks.com/topic/105221-update-query-displaying-duplicate-data/ Share on other sites More sharing options...
btherl Posted May 12, 2008 Share Posted May 12, 2008 Can you post more of the code? None of what you posted contains the string "User Selected", which appears in the output. Link to comment https://forums.phpfreaks.com/topic/105221-update-query-displaying-duplicate-data/#findComment-538805 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.