我的PHP正在改变使用javascript为div提供的div的元素样式。我不知道为什么。我尝试对它进行故障排除,但它没有用。
有没有人知道问题可能是什么,或者如何更改php以避免出现此问题。
PHP代码(DB-connect.php):
<?php
$server = "localhost";
$user = "root";
$pass = "";
$dbname = "portfolio";
$connect = mysqli_connect($server, $user, $pass, $dbname);
if (!$connect) {
die("Connection Failed: " . mysqli_connect_error());
}
$opl = "SELECT begin, eind, opleiding, school, beschrijving FROM opleidingen";
$result = mysqli_query($connect, $opl);
mysqli_close($connect);
?>
主文件中的PHP
<?php
include 'inc/db-connect.php';
?>
<?php
if (mysqli_num_rows($result) > 0) {
while($row = mysqli_fetch_assoc($result)) {
echo '<h3> $row["school"] </h3>';
}
}
?>
动态背景大小的Javascript初始化代码:
$('header').css({ 'height': $(window).height() });
$(window).on('resize', function() {
$('header').css({ 'height': $(window).height() });
$('body').css({ 'width': $(window).width() })
});
我尝试过更改php或更改javascript,但我无法排除故障。