Awkward white space above outputed Table

Multi tool use
Multi tool use












-1















I outputed the data from my database in a HTML Table and styled it with CSS. Everything is fine, but there is an awkward White space above the outputed Table. (see picture). What's wrong with my code?



Result:
enter image description here






<html>
<head>
<title>Create new user</title>
<style>
table {
border-collapse: collapse;
width: 100%;
}

th, td {
text-align: left;
padding: 8px;
}

tr:nth-child(even){background-color: #f2f2f2}

th {
background-color: #4CAF50;
color: white;
}
</style>
</head>
<body>

<div>
<?php


$servername = "localhost";
$username = "root";
$password = "";
$dbname = "users";

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

$sql = "select * from employee";
$result = $conn->query($sql);

echo "<table>";
echo "<th>Identifier</th><th>Name</th><th>Lastname</th>";
if ($result->num_rows > 0) {

while($row = $result->fetch_assoc()) {

echo "<tr>";
echo "<td>" . $row["id"] . "</td>";
echo "<td>" . $row["vorname"] . "</td>";
echo "<td>" . $row["nachname"] . "</td>";
echo "</tr>";
echo "</br>";

}

}
else {
echo "0 results";
}
echo "</table>";

$conn->close();

?>
</div>
</body>
</html>





Expected result : no white space above the Table



Many Thanks










share|improve this question

























  • <div stlye="vertical-align:top"> maybe?

    – Roy
    Jan 2 at 11:36








  • 3





    Open Inspect Element and see what is there?

    – Muhammad Bilal
    Jan 2 at 11:38











  • Also remove this space (between php start tag and your first variable).

    – PrakashG
    Jan 2 at 11:40













  • Not related to your question, but your code can be improved to ease the maintenance. Start with a DOCTYPE. Also try not to mix presentation with code. Your PHP presentation logic (the HTML output) is only expecting an array. Make your array aviable before starting the HTML. Then you can simply your PHP presentation code.

    – mTorres
    Jan 2 at 11:41


















-1















I outputed the data from my database in a HTML Table and styled it with CSS. Everything is fine, but there is an awkward White space above the outputed Table. (see picture). What's wrong with my code?



Result:
enter image description here






<html>
<head>
<title>Create new user</title>
<style>
table {
border-collapse: collapse;
width: 100%;
}

th, td {
text-align: left;
padding: 8px;
}

tr:nth-child(even){background-color: #f2f2f2}

th {
background-color: #4CAF50;
color: white;
}
</style>
</head>
<body>

<div>
<?php


$servername = "localhost";
$username = "root";
$password = "";
$dbname = "users";

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

$sql = "select * from employee";
$result = $conn->query($sql);

echo "<table>";
echo "<th>Identifier</th><th>Name</th><th>Lastname</th>";
if ($result->num_rows > 0) {

while($row = $result->fetch_assoc()) {

echo "<tr>";
echo "<td>" . $row["id"] . "</td>";
echo "<td>" . $row["vorname"] . "</td>";
echo "<td>" . $row["nachname"] . "</td>";
echo "</tr>";
echo "</br>";

}

}
else {
echo "0 results";
}
echo "</table>";

$conn->close();

?>
</div>
</body>
</html>





Expected result : no white space above the Table



Many Thanks










share|improve this question

























  • <div stlye="vertical-align:top"> maybe?

    – Roy
    Jan 2 at 11:36








  • 3





    Open Inspect Element and see what is there?

    – Muhammad Bilal
    Jan 2 at 11:38











  • Also remove this space (between php start tag and your first variable).

    – PrakashG
    Jan 2 at 11:40













  • Not related to your question, but your code can be improved to ease the maintenance. Start with a DOCTYPE. Also try not to mix presentation with code. Your PHP presentation logic (the HTML output) is only expecting an array. Make your array aviable before starting the HTML. Then you can simply your PHP presentation code.

    – mTorres
    Jan 2 at 11:41
















-1












-1








-1








I outputed the data from my database in a HTML Table and styled it with CSS. Everything is fine, but there is an awkward White space above the outputed Table. (see picture). What's wrong with my code?



Result:
enter image description here






<html>
<head>
<title>Create new user</title>
<style>
table {
border-collapse: collapse;
width: 100%;
}

th, td {
text-align: left;
padding: 8px;
}

tr:nth-child(even){background-color: #f2f2f2}

th {
background-color: #4CAF50;
color: white;
}
</style>
</head>
<body>

<div>
<?php


$servername = "localhost";
$username = "root";
$password = "";
$dbname = "users";

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

$sql = "select * from employee";
$result = $conn->query($sql);

echo "<table>";
echo "<th>Identifier</th><th>Name</th><th>Lastname</th>";
if ($result->num_rows > 0) {

while($row = $result->fetch_assoc()) {

echo "<tr>";
echo "<td>" . $row["id"] . "</td>";
echo "<td>" . $row["vorname"] . "</td>";
echo "<td>" . $row["nachname"] . "</td>";
echo "</tr>";
echo "</br>";

}

}
else {
echo "0 results";
}
echo "</table>";

$conn->close();

?>
</div>
</body>
</html>





Expected result : no white space above the Table



Many Thanks










share|improve this question
















I outputed the data from my database in a HTML Table and styled it with CSS. Everything is fine, but there is an awkward White space above the outputed Table. (see picture). What's wrong with my code?



Result:
enter image description here






<html>
<head>
<title>Create new user</title>
<style>
table {
border-collapse: collapse;
width: 100%;
}

th, td {
text-align: left;
padding: 8px;
}

tr:nth-child(even){background-color: #f2f2f2}

th {
background-color: #4CAF50;
color: white;
}
</style>
</head>
<body>

<div>
<?php


$servername = "localhost";
$username = "root";
$password = "";
$dbname = "users";

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

$sql = "select * from employee";
$result = $conn->query($sql);

echo "<table>";
echo "<th>Identifier</th><th>Name</th><th>Lastname</th>";
if ($result->num_rows > 0) {

while($row = $result->fetch_assoc()) {

echo "<tr>";
echo "<td>" . $row["id"] . "</td>";
echo "<td>" . $row["vorname"] . "</td>";
echo "<td>" . $row["nachname"] . "</td>";
echo "</tr>";
echo "</br>";

}

}
else {
echo "0 results";
}
echo "</table>";

$conn->close();

?>
</div>
</body>
</html>





Expected result : no white space above the Table



Many Thanks






<html>
<head>
<title>Create new user</title>
<style>
table {
border-collapse: collapse;
width: 100%;
}

th, td {
text-align: left;
padding: 8px;
}

tr:nth-child(even){background-color: #f2f2f2}

th {
background-color: #4CAF50;
color: white;
}
</style>
</head>
<body>

<div>
<?php


$servername = "localhost";
$username = "root";
$password = "";
$dbname = "users";

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

$sql = "select * from employee";
$result = $conn->query($sql);

echo "<table>";
echo "<th>Identifier</th><th>Name</th><th>Lastname</th>";
if ($result->num_rows > 0) {

while($row = $result->fetch_assoc()) {

echo "<tr>";
echo "<td>" . $row["id"] . "</td>";
echo "<td>" . $row["vorname"] . "</td>";
echo "<td>" . $row["nachname"] . "</td>";
echo "</tr>";
echo "</br>";

}

}
else {
echo "0 results";
}
echo "</table>";

$conn->close();

?>
</div>
</body>
</html>





<html>
<head>
<title>Create new user</title>
<style>
table {
border-collapse: collapse;
width: 100%;
}

th, td {
text-align: left;
padding: 8px;
}

tr:nth-child(even){background-color: #f2f2f2}

th {
background-color: #4CAF50;
color: white;
}
</style>
</head>
<body>

<div>
<?php


$servername = "localhost";
$username = "root";
$password = "";
$dbname = "users";

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

$sql = "select * from employee";
$result = $conn->query($sql);

echo "<table>";
echo "<th>Identifier</th><th>Name</th><th>Lastname</th>";
if ($result->num_rows > 0) {

while($row = $result->fetch_assoc()) {

echo "<tr>";
echo "<td>" . $row["id"] . "</td>";
echo "<td>" . $row["vorname"] . "</td>";
echo "<td>" . $row["nachname"] . "</td>";
echo "</tr>";
echo "</br>";

}

}
else {
echo "0 results";
}
echo "</table>";

$conn->close();

?>
</div>
</body>
</html>






php html mysql






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 2 at 11:50









Muhammad Bilal

1,81811222




1,81811222










asked Jan 2 at 11:32









anynameanyname

31




31













  • <div stlye="vertical-align:top"> maybe?

    – Roy
    Jan 2 at 11:36








  • 3





    Open Inspect Element and see what is there?

    – Muhammad Bilal
    Jan 2 at 11:38











  • Also remove this space (between php start tag and your first variable).

    – PrakashG
    Jan 2 at 11:40













  • Not related to your question, but your code can be improved to ease the maintenance. Start with a DOCTYPE. Also try not to mix presentation with code. Your PHP presentation logic (the HTML output) is only expecting an array. Make your array aviable before starting the HTML. Then you can simply your PHP presentation code.

    – mTorres
    Jan 2 at 11:41





















  • <div stlye="vertical-align:top"> maybe?

    – Roy
    Jan 2 at 11:36








  • 3





    Open Inspect Element and see what is there?

    – Muhammad Bilal
    Jan 2 at 11:38











  • Also remove this space (between php start tag and your first variable).

    – PrakashG
    Jan 2 at 11:40













  • Not related to your question, but your code can be improved to ease the maintenance. Start with a DOCTYPE. Also try not to mix presentation with code. Your PHP presentation logic (the HTML output) is only expecting an array. Make your array aviable before starting the HTML. Then you can simply your PHP presentation code.

    – mTorres
    Jan 2 at 11:41



















<div stlye="vertical-align:top"> maybe?

– Roy
Jan 2 at 11:36







<div stlye="vertical-align:top"> maybe?

– Roy
Jan 2 at 11:36






3




3





Open Inspect Element and see what is there?

– Muhammad Bilal
Jan 2 at 11:38





Open Inspect Element and see what is there?

– Muhammad Bilal
Jan 2 at 11:38













Also remove this space (between php start tag and your first variable).

– PrakashG
Jan 2 at 11:40







Also remove this space (between php start tag and your first variable).

– PrakashG
Jan 2 at 11:40















Not related to your question, but your code can be improved to ease the maintenance. Start with a DOCTYPE. Also try not to mix presentation with code. Your PHP presentation logic (the HTML output) is only expecting an array. Make your array aviable before starting the HTML. Then you can simply your PHP presentation code.

– mTorres
Jan 2 at 11:41







Not related to your question, but your code can be improved to ease the maintenance. Start with a DOCTYPE. Also try not to mix presentation with code. Your PHP presentation logic (the HTML output) is only expecting an array. Make your array aviable before starting the HTML. Then you can simply your PHP presentation code.

– mTorres
Jan 2 at 11:41














1 Answer
1






active

oldest

votes


















0














Why are you adding a <br>



echo "</br>";


in your while loop.



Try this -



if ($result->num_rows > 0) {

while($row = $result->fetch_assoc()) {

echo "<tr>";
echo "<td>" . $row["id"] . "</td>";
echo "<td>" . $row["vorname"] . "</td>";
echo "<td>" . $row["nachname"] . "</td>";
echo "</tr>";
}

} else {
echo "0 results";
}


If this does not fix, try inspecting and see what is adding space. Also check for the padding and margins in the computed view in chrome inspect view.



If nothing works, try setting top:0 for the div and may be for table :)






share|improve this answer
























  • Yes it did the trick! it was indeed the </br> Tag, it was inside the loop! But again, it should'nt make w white space above the table! awkward! but thanks, it worked!

    – anyname
    Jan 2 at 11:57













Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54005583%2fawkward-white-space-above-outputed-table%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














Why are you adding a <br>



echo "</br>";


in your while loop.



Try this -



if ($result->num_rows > 0) {

while($row = $result->fetch_assoc()) {

echo "<tr>";
echo "<td>" . $row["id"] . "</td>";
echo "<td>" . $row["vorname"] . "</td>";
echo "<td>" . $row["nachname"] . "</td>";
echo "</tr>";
}

} else {
echo "0 results";
}


If this does not fix, try inspecting and see what is adding space. Also check for the padding and margins in the computed view in chrome inspect view.



If nothing works, try setting top:0 for the div and may be for table :)






share|improve this answer
























  • Yes it did the trick! it was indeed the </br> Tag, it was inside the loop! But again, it should'nt make w white space above the table! awkward! but thanks, it worked!

    – anyname
    Jan 2 at 11:57


















0














Why are you adding a <br>



echo "</br>";


in your while loop.



Try this -



if ($result->num_rows > 0) {

while($row = $result->fetch_assoc()) {

echo "<tr>";
echo "<td>" . $row["id"] . "</td>";
echo "<td>" . $row["vorname"] . "</td>";
echo "<td>" . $row["nachname"] . "</td>";
echo "</tr>";
}

} else {
echo "0 results";
}


If this does not fix, try inspecting and see what is adding space. Also check for the padding and margins in the computed view in chrome inspect view.



If nothing works, try setting top:0 for the div and may be for table :)






share|improve this answer
























  • Yes it did the trick! it was indeed the </br> Tag, it was inside the loop! But again, it should'nt make w white space above the table! awkward! but thanks, it worked!

    – anyname
    Jan 2 at 11:57
















0












0








0







Why are you adding a <br>



echo "</br>";


in your while loop.



Try this -



if ($result->num_rows > 0) {

while($row = $result->fetch_assoc()) {

echo "<tr>";
echo "<td>" . $row["id"] . "</td>";
echo "<td>" . $row["vorname"] . "</td>";
echo "<td>" . $row["nachname"] . "</td>";
echo "</tr>";
}

} else {
echo "0 results";
}


If this does not fix, try inspecting and see what is adding space. Also check for the padding and margins in the computed view in chrome inspect view.



If nothing works, try setting top:0 for the div and may be for table :)






share|improve this answer













Why are you adding a <br>



echo "</br>";


in your while loop.



Try this -



if ($result->num_rows > 0) {

while($row = $result->fetch_assoc()) {

echo "<tr>";
echo "<td>" . $row["id"] . "</td>";
echo "<td>" . $row["vorname"] . "</td>";
echo "<td>" . $row["nachname"] . "</td>";
echo "</tr>";
}

} else {
echo "0 results";
}


If this does not fix, try inspecting and see what is adding space. Also check for the padding and margins in the computed view in chrome inspect view.



If nothing works, try setting top:0 for the div and may be for table :)







share|improve this answer












share|improve this answer



share|improve this answer










answered Jan 2 at 11:48









Ravi Kumar GuptaRavi Kumar Gupta

736928




736928













  • Yes it did the trick! it was indeed the </br> Tag, it was inside the loop! But again, it should'nt make w white space above the table! awkward! but thanks, it worked!

    – anyname
    Jan 2 at 11:57





















  • Yes it did the trick! it was indeed the </br> Tag, it was inside the loop! But again, it should'nt make w white space above the table! awkward! but thanks, it worked!

    – anyname
    Jan 2 at 11:57



















Yes it did the trick! it was indeed the </br> Tag, it was inside the loop! But again, it should'nt make w white space above the table! awkward! but thanks, it worked!

– anyname
Jan 2 at 11:57







Yes it did the trick! it was indeed the </br> Tag, it was inside the loop! But again, it should'nt make w white space above the table! awkward! but thanks, it worked!

– anyname
Jan 2 at 11:57






















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54005583%2fawkward-white-space-above-outputed-table%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







pgJZSk,eTiua7yc6FB vmw7pOWy96mN85FyCZqzYOYaULOa,v3sCBik
8EY,36b,mfoHXmGrqM1tI,tjsWOs2HudBzPEGyx8y,0Iv,7OV KeJPhCFgyjuhSi1889I 9hVJH8zA HS

Popular posts from this blog

Monofisismo

Angular Downloading a file using contenturl with Basic Authentication

Olmecas