Im learning PHP and MySql and im trying out simple commands to return table data from my databases. I checked that the table exists and the sql code works fine within phpmyadmin. The PDO seems to connect fine and all my connections data is correct. From my research i am assuming that godaddy might be running a version of PHP that does not support what im trying to do. Im ready to switch to another hosting service but i first decided to ask here because maybe im doing something wrong on my part. I also tried inserting a PHP5.ini file into the root folder to see if i can somehow 'activate' the basic PDO statements but i couldnt find how to exactly do that, plus godaddy support said that linux servers have PDO enabled and all that jazz.
Heres the code
<?php
$hostname='mysql:host=myHost';
$username='myUsername';
$password='myPassword';
$testdb = new PDO($hostname,$username,$password);
$query = 'SELECT * FROM test';
$testResult = $testdb->query($query);
if ($testdb == false) {
$message = "errorDB";
}
else {
if ($testResult == false)
{
$message = "errorQuery";
}
else {
$message = "safe";
}
}
?>
$message is ALWAYS errorQuery.... I made this code after trying a foreach statement with $testresults that always gave an error stating $testresults wasnt an object therefor the foreach statements always failed.
any help will be appreciated
Again I am on a shared LINUX hosting plan with Godaddy...
SELECT RAND();just like that. It'll round-trip through MySQL and return a random value. If that works, then it's just your query that's bad, not PDO or PHP or MySQL. – Marc B May 13 '11 at 20:51