Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to convert the following code to PDO - can anyone please assist?

$code = mysql_real_escape_string($code);
$code_exists = mysql_query("SELECT COUNT(`id`) FROM `links` WHERE `code`='$code' LIMIT 1");
return (mysql_result($code_exists, 0) == 1) ? true : false ; 
share|improve this question
7  
Start here – Musa Sep 3 '12 at 2:19

closed as not a real question by Dagon, andrewsi, ρяσѕρєя K, HamZa DzCyberDeV, hakre Apr 25 at 22:11

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

$dbh = new PDO('mysql:alias');
share|improve this answer
1  
This does not provide an answer to the question. To critique or request clarification from an author, leave a comment below their post. – eugen Apr 25 at 22:23

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