我是一个试图创建测验的 php 新手。这里的大多数类似问题都说大括号的数量不匹配,但我在我的代码中找不到任何这样的情况。我该如何解决这个问题?
<?php require_once 'connect.php';?>
<!DOCTYPE html>
<html>
<head>
<title>Mbagurukul Quiz</title>
<meta charset='utf-8'>
<link rel='stylesheet' href='css/style.css'/>
</head>
<body>
<h1>Dummy Quiz</h1>
<?php $response=mysql_query("select * from questions") or die(mysql_error()); ?>
<form method='post' id='quiz_form'>
<?php while($result=mysql_fetch_array($response)){
Print "<th>" .$result['ID'] . "</th> <td>" .$result['Question'] . "</td>" ;?>
<input type="radio" name="Option_2" value=result['Option_2']> result['Option_2']
<input type="radio" name="Option_1" value=result['Option_1']> result['Option_1']
<input type="radio" name="Option_3" value=result['Option_3']> result['Option_3']
<input type="radio" name="Option_4" value=result['Option_4']> result['Option_4']
<?php ? ?>
</form>
</body>
</html>
我收到错误
( ! ) 解析错误:语法错误,意外的 '?' 在第 19 行的 C:\wamp\www\MbaGurukul\quiz.php 中