Jump to content

Mysql data not showing


deadlyp99

Recommended Posts

Hello, well I am working on a project, and I am simply not getting any errors. Though it is not working as it should.

I've done my usually debugging things, but have not done anything but make it worse.

 

So here is the condensed code before I tried fixing it.

 

The domains from the database should be listed in the <select><option> feild.

 

Thank you.

 

<html>
<head><title>Member Manager</title></head>
<body>
<?php
	$dbhost = 'localhost';
	$dbuser = 'root';
	$dbpass = 'root';

	$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die('Error connecting to mysql');

	$dbname = 'DB_User_Manage';

	mysql_select_db($dbname);
?>

<form name="SelectAccount" method="post">
	<select name="S_Member" >
		<option selected="yes">-------</option>

		<?php
			$list_raw = mysql_query("SELECT * FROM `um_members` ORDER BY ASC");
			$list = mysql_fetch_array($list_raw);

			while ($list) {
				echo '<option selected="no"  value="'.$list['name'].'">-'.$list['domain'].'-</option>\n';  
			}
		?>
	</select>
	<input type="submit" value="Select" />
</form>


</body>
<html>

Link to comment
https://forums.phpfreaks.com/topic/112841-mysql-data-not-showing/
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.