Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
2  
Show some code please. – Vaibhav Desai Nov 14 '12 at 18:38
1  
Impossible to tell with no table structure, no query and no example data – juergen d Nov 14 '12 at 18:39
the invisible query returns null, well how odd. – Dagon Nov 14 '12 at 18:39
I updated my post. Does that help? – Rob Smith Nov 14 '12 at 18:45
Do you get anything in $stmt->ErrorInfo() or $this->db->ErrorInfo()? – andrewsi Nov 14 '12 at 19:10
show 2 more comments

closed as not a real question by Dagon, tereško, Andy Hayden, SomeKittens, John Leehey Nov 15 '12 at 2:17

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

$stmt = $this->db->prepare("SELECT translate FROM translations t JOIN users s ON t.userid = s.userid WHERE s.username = ?");
$stmt->bindParam(1, $username, PDO::PARAM_STR);
$stmt->execute();
$stmt->bind_result($text);

It has been I while since I used PDO for the last time but I think the code I posted above would do fine.

I guess u forgot to add the variable type:

$stmt->bind_param("s", $username); //your code
$stmt->bindParam(1, $username, PDO::PARAM_STR); //mine
share|improve this answer
I am using mysqli not PDO. Just curious, is there an advantage to using PDO? Most seem to use it. – Rob Smith Nov 14 '12 at 20:42
I solved the problem. I added the following after bind_result... while ($stmt->fetch()) { break; } $stmt->close(); – Rob Smith Nov 15 '12 at 15:58

Not the answer you're looking for? Browse other questions tagged or ask your own question.