在表中集成href链接

时间:2014-06-17 10:42:39

标签: php mysql hyperlink html-table href

我想在我的php表中添加一些url链接。我已经在PHP页面上运行了表。 我需要专栏' Rute_navn'被激活为网址链接。我在网上找到了一个代码字符串,但我不知道把它放在我的PHP表代码中。

有人有什么建议吗?我试图将单个代码行粘贴到几个地方,但每次表格都会变成奇怪的东西。

我的一行代码:

<?php echo"<a href='result.php?id=$Rute_navn'>$Rute_navn</a>";?> 

这是我的主要PHP表格代码:

<?php
    //$db_host = 'localhost';
    //$db_user = 'user';
    //$db_pwd = 'password';
    //$database = 'database';
    //$table = 'Avisruter';

    if (!mysql_connect('localhost', 'user', 'password'))
    die("Can't connect to database");

    if (!mysql_select_db('database'))
    die("Can't select database");

    // sending query
    $result = mysql_query ("SELECT Rute_nr, Rute_navn FROM Avisruter WHERE Bruger=''");
    if (!$result) {
        die("Query to show fields from table failed");
    }

    $fields_num = mysql_num_fields($result);

    echo "<h2>Ledige avisruter</h2>";
    echo "<table border='5' width=305> <tr>";

    // printing table headers
    for($i=0; $i<$fields_num; $i++) {
        $field = mysql_fetch_field($result);
        echo "<td>{$field->name}</td>";
    }
    echo "</tr>\n";

    while($row = mysql_fetch_row($result)) {
        echo "<tr>";

        foreach($row as $cell)
            echo "<td>$cell</td>";

        echo "</tr>\n";
    }
    mysql_free_result($result);
?>

2 个答案:

答案 0 :(得分:0)

更改

foreach($row as $cell)
   echo "<td>$cell</td>";

foreach($row as $column => $value){
    if ($column == 'Rute_navn') {
        echo "<td><a href='result.php?id=$value'>$value</a></td>";
    } else {
        echo "<td>$value</td>";
    }
}

答案 1 :(得分:-1)

while($row = mysql_fetch_row($result))
    {

            echo "<tr>";

           foreach($row as $cell){
             if($cell == "Rute_navn"){
             echo "<td><a href='result.php?id=$Rute_navn'>$Rute_navn</a></td>";
                                     }
              else
        echo "<td>$cell</td>";
}

        echo "</tr>\n";
    }