我实际上期待学习JavaScript,但我发现用于编写JS代码的语法不同。
以html标签和脚本标签开头的那个:
while($row = mysqli_fetch_assoc($result)) { //this cycle does 2 iterations
$currSlider=0;//here it's zero
$photoQuery = "SELECT * FROM tphoto WHERE coinId=".$row['id'];
$photos = mysqli_query($sql, $photoQuery);
echo('<div class="country_data">
Country: '.$row['country_name'].'<br>
Value: '.$row['nominal_name'].' '.$row['curency_name'].'<br>
Metal: '.$row['metal_name'].'<br>
Creation: '.$row['dateCreation'].'<br>
Weight: '.$row['weight'].'<br>
Mintage: '.$row['mintage'].'<br><br>
</div>');
if (mysqli_num_rows($photos) > 0) {
echo('<div class="coin_img_div">');
while($photoRow = mysqli_fetch_assoc($photos)) {
echo('<img class="slide" src="/../img/collection/'.$photoRow['photoPath'].'">');
}
echo('<a class="sliderPrev" onclick="plusDivs(-1, '.++$currSlider.');">❮</a>//there it's one always.
<a class="sliderNext" onclick="plusDivs(1, '.$currSlider.');">❯</a>//and there too.
</div>');
}
}
和另一个像这样开始的人:
<html>
<head>
</head>
<body>
<script type="text/javascript">
document.write("Hello World")
</script>
<p>This is web page body </p>
</body>
</html>
(对不起,如果语法有问题,因为我是这个人的新手)
所以我想知道哪种语法是什么以及使用它的原因 以及用于Web开发的语法。