我有一个简单的错误,我无法弄清楚为什么我会得到它。 知道为什么我会得到
SyntaxError: Expected an identifier but found 'Connected' instead
我正在使用Safari,但我在Google Chrome中尝试过。 我必须让它与Safari一起使用。
守则:
<?php
$link = mysql_connect('localhost', 'root', 'student');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
echo 'Database Connected successfully';
?>
调用上述
的代码<script type="text/javascript">
// Check if the page has loaded completely priere to 2 seconds of the page being fully loaded
$(document).ready( function() {
setTimeout( function() {
$('#displayconnection').load('js/dbconnect.php');
}, 2000);
});
</script>
答案 0 :(得分:1)
您的网络浏览器不应影响PHP代码是否运行。此外,这不是JavaScript。
确保您的服务器可以执行该文件(它是否有.php
扩展名)?
试试这段代码:
$(document).ready(function() {
setTimeout(function() {
$.get('js/dbconnect.php', function(data) {
$('#displayconnection').text(data);
});
}, 2000);
});