私は1 &でドメインをホストしています。私はpdoを使って自分のデータベースに接続したいと思います。ポートを使用せずに、それは動作しませんし、私は自分のコードにポートを追加する方法がわからない....何らかの理由で私のコードが動作しない
$mysql_host = "xxxxxxxxx";
$mysql_username = "xxxxxxxxxxxxxx";
$mysql_database = "xxxxxxxxxxxxxxx";
$mysql_password = "xxxxxxxxxxxxxxx";
$pdo = new PDO("mysql:host=" . $mysql_host . ";dbname=" . $mysql_database , $mysql_username , $mysql_password);
イムわからないが、おそらく問題は、接続と一緒に行きません。しかし、mysqlコマンドで...
$schematic_statement = $pdo->prepare('SELECT title FROM schematics-download WHERE id = 1');
$schematic_statement->bindParam('title', $Title);
$schematic_statement->execute();
$TITLE = $schematic_statement->fetch();
echo ($TITLE);
ありがとうございます!
[docs](http://us3.php.net/manual/en/ref.pdo-mysql.connection.php)を参照してください。 –
マニュアルを読むか? http://php.net/manual/en/pdo.connections.php通知[このユーザーが寄稿しました](http://php.net/manual/en/pdo.connections.php#114822)。 –
また、ここで列をバインドしようとするように見えますが、そのことはできません。 –