<?php
include("dbFunctions.php");
$query ="SELECT * FROM medical_category";
$result = mysqli_query($link,$query);
//datebase query
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Official form</title>
<link rel="stylesheet" type="text/css" href="stylesheets/jquery-ui.css" />
<script language="javascript" type="text/javascript" src="scripts/jquery- 1.10.2.min.js"></script>
<script language="javascript" type="text/javascript" src="scripts/jquery-ui.js"></script>
//javascript
<script>
$(function() {
$("#tabs").tabs();
});
</script>
// tabs function
</head>
<body>
<div id="tabs">
<?php while ($arrayResult = mysqli_fetch_array($result)){ ?>
// fetch the array , is the vertical data affecting the alignment of tabs
<li><a href="#tabs-<?php echo $arrayResult['Medical_category_id']?> "><? php echo $arrayResult['Medical_categoryName']; ?></a></li>
php的部分工作,但基於該ID標籤不對齊以及 我的回波數據,目前垂直對齊 如何使標籤重新工作? 的數據也被子彈分離,所以沒有對齊爲製表假設是動態JQUERY不工作
'',src中的空格? –
檢查您的控制檯的錯誤 –
我現在想通了,忘記了包括
–