php串連資料庫、建立資料庫、建立資料表

來源:互聯網
上載者:User

標籤:localhost   body   err   pre   sql   oca   input   rip   select   

<?php    $con = mysql_connect("localhost", "root", "root");    if(!$con){        die("Could not connection:" . mysql_error());    }else{        echo $con;    }        /*$dbName = $_GET[‘databaseName‘];    if($dbName && isset($dbName)){        createDatabase();    }*/    $tableName = $_GET[‘tableName‘];    if($tableName && isset($tableName)){        createTable_PERSON();    }            function createDatabase(){        echo "建立資料庫中";        $dbName = $_GET[‘databaseName‘];        global $con;        echo "CREATE DATABASE " . $dbName;        $q = mysql_query("CREATE DATABASE ".$dbName , $con);        if($q){            echo "建立建立成功";        }else{            echo "建立失敗 " . mysql_errno();        }    }    //建立person表    function createTable_PERSON(){        global $con;        mysql_select_db("xudongyang" , $con);        $sql = "CREATE TABLE person (            firstName varchar(15),            lastName varchar(15),            age int(5))";        echo "建立資料局 <br />";        echo $sql . "<br />";        mysql_query($sql , $con);        echo "建立完畢";    }        mysql_close($con);?><html>    <head>        <title></title>        <meta charset="utf-8"/>    </head>    <body>        <div>            <fieldset id="">                <legend>建立資料庫</legend>                <input type="text" /><button id="createDataBaseBtn">建立</button>            </fieldset>        </div>                <script src="jquery-2.1.0.js" type="text/javascript" charset="utf-8"></script>        <script type="text/javascript">            $(function(){                $(‘#createDataBaseBtn‘).click(function(){                    var val = $(this).prev().val();                    location.href = ‘?databaseName=‘ + val;                });            })        </script>    </body></html>

 

php串連資料庫、建立資料庫、建立資料表

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.