解析错误:语法错误,第11行的C:\ xampp \ htdocs \ change.php中出现意外的'numberedHeading'(T_STRING)

时间:2018-09-29 15:15:15

标签: php

我知道这个问题已经被问了很多了,我发现所有类似的问题仍然无法解决,所以请我知道错误在哪里以及如何纠正它?

<html>
<body>
<?php
$num_of_calls = 0;
function numberedHeading($txt){
	
  global $num_of_calls;    
  $num_of_calls++;     
  echo "<h1>".$num_of_calls." ".$txt."</h1>"; 
}
	numberedHeading("Widgets");
	echo "<p>We build a fine range of widgets.</p>";
	numberedHeading("Doodads");
	echo "<p>Finest in the world.</p>";
	?>
</body>
</html>

0 个答案:

没有答案