就相当于在网页中往数据中写东西 读东西对不起 我新手 超级新手 完全不知道要怎么搞...

解决方案 »

  1.   

    用PHP的话很简单……
    <?php
    //连接数据库
    $conn=mysql_connect('localhost','root','psw');
    //选择数据库
    mysql_select_db('data',$conn);
    //读取数据
    $result=mysql_query('select * from usertable',$conn);
    while($row=mysql_fetch_array($result)){
     echo $row['xxx'];
     ...
     ...
    }
    ?>
      

  2.   

    你需要学习一下PHP的基础知识。
      

  3.   

    安装myphpadmin就可以通过网页操作数据库了