sql >> データベース >  >> RDS >> Mysql

データベースからのURLとリンクテキスト

    ユーザー名「root」とパスワード「root」でローカルのmysqlサーバーに接続し、URLをurl_tableという名前のテーブルに保存するとします。 url_databaseという名前のデータベース内 次のようなことができます:

    $connection = mysql_connect("127.0.0.1","root","root"); // Connect to the mysql server
    mysql_select_db("url_database"); // Open the desired database
    
    $query = "SELECT url,text FROM url_table"; // Query to select the fields in each row
    $result = mysql_query($query); // Run the query and store the result in $result
    
    while($row = mysql_fetch_assoc($result)) // While there are still rows, create an array of each
    {
        echo "<a href='".$row['url']."'>".$row['text']."</a>"; // Write an anchor with the url as href, and text as value/content
    }
    
    mysql_close($connection); // close the previously opened connection to the database
    


    1. 複数の列に双方向の一意のインデックスを実装する方法

    2. 年齢を計算するためのMySQLの日付の違い

    3. JavaでUUIDをbinary(16)として保存する方法

    4. 次のイベントの日付を表示する