<?php
include("regDBConnect.php");
// collect all the results
$rows = array();
$result1 = mysql_query("SELECT * FROM Phase where Pid = 1", $db) or die("cannot select");
while($row = mysql_fetch_array($result1)) {
$rows []= array(
'id' => $row['id'],
'parent' => $row['parent'],
'name' => $row['name'],
);
/*
if you remove the line above and uncomment this instead,
javascript objects will see all the properties you selected from the DB
*/
// $rows []= $row;
}
?>
<script type="text/javascript">
// now output the collected results
var treeData = <?php echo json_encode($rows); ?>;
</script>
ध्यान दें कि मैंने पीडीओ/MySQLi के बारे में जो कहा वह अभी भी लागू होता है, इस विशिष्ट प्रश्न का उत्तर देने के लिए यह केवल एक न्यूनतम उदाहरण है। (और सामान्य तौर पर, आपको केवल उन्हीं स्तंभों का चयन करना चाहिए जिनकी आपको आवश्यकता होगी, न कि *
।)