Zerpex Posted March 13, 2012 Share Posted March 13, 2012 Hi again again, I'm making a search, where I use BETWEEN, if I have et $maxPrice is 2147483647 and $minPrice is 0 - (result from var_dump()), when I then use it in PDO, it's like it get another 'maxPrice' because it only show results under "200000" in price, but if I define, a static value of 2.000.000 it gets all the results as it should, but not when doing it with params in PDO :/ I also do a var_dump() of the maxprice, after the PDO, and the value is still the same as above (the 2147483647), and I've been spending loong time now, trying to find out why! Maybe someone here can spot the error! http://codepad.org/VIsk0UI8 Thank you a lot! Quote Link to comment https://forums.phpfreaks.com/topic/258816-pdo-maxprice-problem-when-using-params/ Share on other sites More sharing options...
thewebsolutionprovider Posted March 13, 2012 Share Posted March 13, 2012 without looking in too much detail, perhaps this is the issue: $row = $stmt->fetchAll(PDO::FETCH_ASSOC); your requesting an ASSOC array here. Quote Link to comment https://forums.phpfreaks.com/topic/258816-pdo-maxprice-problem-when-using-params/#findComment-1326937 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.