Mysql
 sql >> Baza danych >  >> RDS >> Mysql

Tekst adresu URL i linku z bazy danych

Zakładając, że łączysz się z lokalnym serwerem mysql z nazwą użytkownika „root” i hasłem „root”, a adres URL jest przechowywany w tabeli o nazwie url_table w bazie danych o nazwie url_database możesz zrobić coś takiego:

$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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Zrozumienie transakcji pdo mysql

  2. Jak podłączyć bazę danych MySQL do aplikacji ReactJS?

  3. MYSQL - Jak połączyć dwa zapytania, aby pominąć elementy znalezione w drugim zapytaniu (a może jakieś lepsze rozwiązanie?)

  4. Jakie są zalety i wady przechowywania plików w bazie danych?

  5. Mysql varchar unikalna kolumna varchar(255) vs. varchar(50)