2016-03-31 35 views
-1

Bu sayfanın bir araba tablosu yazdı. Resimlerle uzun bir masada yaklaşık 13 otomobil yazdırır. Her sayfa bir altbilgiye sahiptir ve iyi çalışır, ancak tüm araçların yazdırıldığı sayfada (en uzun), ortada bir yere gider. Bunu düzeltmeme yardım edebilecek biri var mı? altbilgi içinPHP veritabanından tablo yazdırır, altbilgi sayfanın ortasına kadar biter

<!DOCTYPE html> 
<html> 

<head> 

    <meta charset="UTF-8"> 

    <title>Home</title> 

    <link rel="stylesheet" href="css/style.css"> 

</head> 

<body> 
<center><div id="squareUnderLogo"><img src="images/logo.png" alt="Logo";></div></center> 
<div id="logOutBtn" align="right"><a href="logout.php"><input type="submit" value="Log out" /> </a></div> 

<?php 
$servername = "localhost"; 
$username = "root"; 
$password = "usbw"; 
$dbname = "cars"; 

// Create connection 
$conn = new mysqli($servername, $username, $password, $dbname); 
// Check connection 
if ($conn->connect_error) { 
    die("Connection failed: " . $conn->connect_error); 
} 

$sql = "SELECT id, plate, car, foto FROM cars"; 

$result = $conn->query($sql); 



if ($result->num_rows > 0) { 

    echo "<center><br><br><br><br><br><table border='1px solid black'></center>"; 


    while($row = $result->fetch_assoc()) { 
     echo "<tr>"; 
     echo "<td width='338'>" . $row['foto'] . "</td>"; 
     echo "<td> <b>Naam:</b> " . $row['car'] . "&nbsp;&nbsp;<br><b>License plate:</b> " . $row['plate'] . "<br><b>Dealer:</b> " . "<br><b>Employee:</b> " . "<br><b>Workplace number:</b> " . "<br><b><i><a href='maintence.php' style='color: #000000'>Maintence>></a><i></b>" . "</td>"; 
     echo "</tr>"; 
    } 

    echo "</table>"; 

} else { 
    echo "No results."; 
} 

$conn->close(); 
?> 
<footer><hr><div align="right">Car DB&nbsp;<br><i>&copy;Designed by Firstname Lastname 2016</i>&nbsp;</div> </footer> 
</body> 
</html> 

CSS: Bu benim için çalışıyor

footer { 
    font-family: 'Arial'; 
    font-size: 90%; 
    width:100%; 
    height:100px; 
    position:absolute; 
    bottom:0; 
    left:0; 

} 
+0

Her ikinize de teşekkürler: alt: 0; 'footer css'den – DevOps

cevap

1

:

aynı php sayfasında bu ekleyin.

<style> 
    footer { 
     font-family: 'Arial'; 
     font-size: 90%; 
     width:100%; 
     height:100px; 
     position:absolute; 
     left:0; 
    } 
</style> 
+0

teşekkürler! –

+0

size bekliyoruz – DevOps