cobusbo Posted December 11, 2015 Share Posted December 11, 2015 Hi I'm trying to change my script from mysql to PDO but im struggling Here is my old Mysql code $queryadmin = "SELECT mxitid FROM Users2 WHERE rank = 1"; $resultadmin = mysql_query($queryadmin) or die(mysql_error()); $admin = array(); while($row = mysql_fetch_array($resultadmin)){ if ($row['mxitid'] != '') $admin[] = $row['mxitid']; } And here is my attempt to make it PDO $mod = "SELECT mxitid FROM Room_users WHERE Rank = 2"; $qmod = $conn->prepare($mod); $qmod->execute(); $qmod->setFetchMode(PDO::FETCH_ASSOC); $mod = array(); while ($rmod = $qmod->fetch()) { if ($rmod['mxitid'] != '') $mod[] = $rmod['mxitid']; } But it doesnt seem to work Quote Link to comment https://forums.phpfreaks.com/topic/299704-mysql-to-pdo-convert/ Share on other sites More sharing options...
Barand Posted December 11, 2015 Share Posted December 11, 2015 "It doesn't work" tells us sweet FA about the problem. We cannot see your screen. What is happening? What isn't happening? Quote Link to comment https://forums.phpfreaks.com/topic/299704-mysql-to-pdo-convert/#findComment-1527820 Share on other sites More sharing options...
Solution cobusbo Posted December 11, 2015 Author Solution Share Posted December 11, 2015 "It doesn't work" tells us sweet FA about the problem. We cannot see your screen. What is happening? What isn't happening? Ah sorry I found my problem I had $mod conflicting with another $mod Quote Link to comment https://forums.phpfreaks.com/topic/299704-mysql-to-pdo-convert/#findComment-1527821 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.