ainoy31 Posted September 26, 2007 Share Posted September 26, 2007 Hello- I have a simple select statement: $ml_id = $_POST['ml_id']; $sql = "SELECT listname FROM ml_lists WHERE ml_id = '$ml_id'"; $result = mysql_query($sql) or die("Error: " . mysql_error()); $row = mysql_fetch_array($result); $listname = $row['listname']; I have echo out the $ml_id and it is giving me the correct number. I can not echo the $listname but get the message of Resource id #5. I have looked over this multiple times and can not figure it out. Much appreciation. Link to comment https://forums.phpfreaks.com/topic/70749-select-issue/ Share on other sites More sharing options...
fenway Posted September 26, 2007 Share Posted September 26, 2007 See how many rows you're getting back... also, I don't know if _array() defaults to ASSOC. Link to comment https://forums.phpfreaks.com/topic/70749-select-issue/#findComment-355678 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.