Jump to content

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

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.