0

i am trying to get data from db, but in while loop, first data is coming blank, let me show you

<?php
$query = "SELECT * FROM `artists` WHERE label_id = '$id' ORDER BY name";

$result = mysql_query($query);



while ($info = mysql_fetch_array($result)) {

?>

    <option value="<?php echo $info['ID']; ?>"><?php echo $info['name']; ?></option>

   <?php 
        }
 ?>

here first $info['ID'] data of the row is missing, $info['name'] is ok but ID is missing.

where am i wrong you think ?

thx

1
  • Could you post the $mysql_query() statement too? Commented Oct 30, 2009 at 9:11

3 Answers 3

2

Check the value keys (if it's not $info['id'] for example).

If it's still not working add after the while this row

print_r($info); die();

In this mode you will see what $info contains (if there is no id, check the query).

Sign up to request clarification or add additional context in comments.

2 Comments

i am getting the selectbox value with this "var aid = $("#artist").val();" maybe this cause that ?
You may try $('#artist:selected').val() or $('#artist:selected').text()
0

Your ID field is really called label_id. Try:

<?php echo $info['label_id']; ?>

Comments

0

Are you sure that the value="x" is missing , the feeling i am getting is that there is something wrong with ur javascript and its not getting the value from the selectbox and based on that you think that the value is missing .. can u view the html source of the output and view in that if the options actually have the value in them .. also posting ur table schema will be helpful.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.