Я могу загружать на полную страницу PHP
Привет, я хочу использовать bootstrap на странице, которую мне уже нужно сделать отзывчивой. Таблица на PHP вот код:
<html> <head> <link rel="stylesheet" type="text/css" href="style.css"> <link href='bootstrap.css' rel='stylesheet'> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> <script src='bootstrap.js'></script> <title>View Records</title> </head> <body> <div class="container"> <center><a href="https://repo-project-danielmurran.c9users.io/view.php"><img src="logo.png" alt="what image shows" height="90" width="300"></a></center> <h1>GCS Reproduction Environment</h1></br> <hr/> <h2>All Reproductions</h2> <?php /* VIEW.PHP Displays all data from 'players' table */ // connect to the database include('connect-db.php'); // get results from database $result = mysql_query("SELECT * FROM players") or die(mysql_error()); // display data in table echo "<table border='1' cellpadding='10' class='sortable'>"; echo "<tr> <th>ID</th> <th>Administration Console</th> <th>Product Version</th> <th>Platform</th> <th>Database</th> <th>Owner</th> <th>Status</th> <th></th> <th></th></tr>"; // loop through results of database query, displaying them in the table while($row = mysql_fetch_array( $result )) { // echo out the contents of each row into a table echo "<tr>"; echo '<th data-sort-initial="Descending">' . $row['id'] . '</th>'; echo '<td data-sort-initial="Descending"><a href="'.$row['curl'].'">'.$row['curl'].'</a></td>'; echo '<td data-sort-initial="Descending">' . $row['pversion'] . '</td>'; echo '<td data-sort-initial="Descending">' . $row['platform'] . '</td>'; echo '<td data-sort-initial="Descending">' . $row['dversion'] . '</td>'; echo '<td data-sort-initial="Descending"><a href="mailto:'.$row['email'].'">' . $row['email'].'</a></td>'; echo '<td data-sort-initial="Descending">' . $row['status'] . '</td>'; echo '<td data-sort-initial="Descending"><a href="edit.php?id=' . $row['id'] . '">Edit</a></td>'; echo '<td data-sort-initial="Descending"><a href="delete.php?id=' . $row['id'] . '">Delete</a></td>'; echo "</tr>"; } // close table> echo "</table>"; ?> <p><a href="new.php">Add a new record</a></p> </div> </body> </html>
Что я уже пробовал:
Интересно, нужно ли мне делать php-теги вокруг каждой строки/столбца в таблице? Мне просто интересно, как лучше всего сделать это отзывчивым.