dsz1966 2014-03-22 08:11
浏览 64

配置文件中的MySQL连接错误

I want to connect to mysql database using php and following is my configuration file.

<?php

$host = "localhost";
$db = "payroll"
$username ="root";
$password = "";

mysql_connect ($host,$username,$password);

mysql_select_db($db,$username);
?>

but when I run my program it gives me this error:

SQL error: No database selected SQL errno: 1046

SQL: select language, admin from user where username='admin' and password='abc123'

What's wrong with my code?

  • 写回答

3条回答 默认 最新

  • duanhuan7750 2014-03-22 08:12
    关注

    You forgot a semicolon here

    $db = "payroll";
                   ^--- Here 
    

    Don't forget to enable error reporting on your code. This is how you do it.

    This(mysql_*) extension is deprecated as of PHP 5.5.0, and will be removed in the future. Instead, the MySQLi or PDO_MySQL extension should be used. Switching to PreparedStatements is even more better to ward off SQL Injection attacks !


    Switch to Prepared Statements..

    A kickstart example..

    <?php
    $dsn = 'mysql:dbname=payroll;host=localhost';
    $user = 'root';
    $password = '';
    
    try
    {
        $dbh = new PDO($dsn, $user, $password ,array(PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8'));
        $dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
    }
    catch (PDOException $e)
    {
        echo 'Connection failed: ' . $e->getMessage();
    }
    

    Read more here on PHP Manual

    评论

报告相同问题?

悬赏问题

  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器