Jump to content

Register


stanleybb

Recommended Posts

this bit of code is suppose to show list the users in the table users (on database) but that doesnt work either, there must be a link why it aint working

 

 

 

 

<?php

 

$page_title = 'View the current users';

include ('./includes/header.html');

 

echo '<h1 id="mainhead">Registered Users </h1>';

 

require_once ('../mysql_connect.php');

 

$query = "SELECT CONCAT(last_name, ',', first_name) AS name, DATE_FORMAT (registration_date, '%M %d, %Y') AS dr FROM users ORDER BY registration_date ASC";

$result = mysql_query ($query);

 

if($result) {

 

echo 'table align="center" cellspacing="0" cellpadding="5">

<tr><td align="left"><b>Name</b></td><td align+"left"><b>Date Registered</b></td></tr>

';

 

while($row = mysql_fetch_array ($result, MYSQL_ASSOC)) {

echo '<tr><td align="left">' .

$row['name'] . '</td><td align="left">' . $row['dr'] . '</td></tr> ';

}

 

echo'</table>';

 

mysql_free_result ($result);

 

} else {

echo '<p class="error"> The current users could not be retrieved.</p>';

echo '<p>' . mysql_error() . '<br /><br />Query: ' . $query . '</p>';

}

 

mysql_close();

include ('/includes/footer.html');

?>

Link to comment
https://forums.phpfreaks.com/topic/92908-register/page/2/#findComment-476075
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.