0

クエリを実行すると、Web アドレスを含む結果が返されるデータベースがあります。結果に住所がある場合、それは常にデータベースの「場所」フィールドに配置されます。

現在、結果が返されると、テキストの行として返されます (ユーザーはこれをコピーしてブラウザー ウィンドウに貼り付ける必要があります)。

単なるテキスト行ではなく、ハイパーリンクを返すようにするにはどうすればよいですか?

これが私のPHPです...

if(mysql_num_rows($raw_results) > 0){ // if one or more rows are returned do following

            while($results = mysql_fetch_array($raw_results)){
            // $results = mysql_fetch_array($raw_results) puts data from database into array, while it's valid it does the loop

                echo "<p><strong><u><h2>".$results['SchoolName']."</h2></u></strong>".$results['text']."</p>";
                echo "<p><strong>Location:</strong>&nbsp;".$results['SchoolLocation']."".$results['text']."</p><br />";
                echo "<p><strong>Notes:</strong>&nbsp;".$results['SchoolNotes']."".$results['text']."</p><br /><br /><br />";
                // posts results gotten from database(title and text) you can also show id ($results['id'])
            }

        }
        else{ // if there is no matching rows do following

            echo "<br /><br /><br /><strong><h2>"."This is great news! The school you searched for is NOT on our Illegitimate High School List..."."</h2></strong>";
        }

    }
    else{ // if query length is less than minimum
        echo "Minimum length is ".$min_length;
    }
?>

私はいくつかの調査を行い、これを見つけましが、それを自分の状況に適用する方法がわかりません。

4

1 に答える 1

1

DB からのフィールド名が Location であると仮定します。

echo "<p><strong>Location:</strong>&nbsp;<a href='".$results['Location']."' target='_blank'>".$results['SchoolLocation']."</a>".$results['text']."</p><br />";
于 2013-07-23T14:57:29.150 に答える