When I run a query in Sequel Pro it returns the correct value, but when I run that same query in my php file it returns null. I recently added a column to a table and that is when it started happening. I used to be able to pull info from that table, but now all cells return null since adding the column. I also tried creating a whole new table and I have the same issue. Any ideas what is going on? I am completely baffled.
$stmt = $this->db->prepare("SELECT translate FROM translations t JOIN users s ON t.userid = s.userid WHERE s.username =?");
$stmt->bind_param("s", $username);
$stmt->execute();
$stmt->bind_result($text);
Translate: -id- -userid- -translate -src_lang- -tar_lang- 11 10 Test Albanian Amharic
$stmt->ErrorInfo()or$this->db->ErrorInfo()? – andrewsi Nov 14 '12 at 19:10