解析错误:语法错误,意外的'<'
我是这个PHP和MySQL世界的新手。 我被赋予了一个关于简单系统的任务。 但是,我得到了这个错误,我不知道如何解决它。 希望你们能帮助我。
<?php
include ("config.php");
mysql_select_db("dbpelanggan") or die(mysql_error());
echo "Sambungan ke pangkalan data berjaya!";
$result = mysql_query("SELECT * FROM pelanggan") or die(mysql_error());
while($row = mysql_fetch_array( $result ))
{ <table width="70%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<th>ID Pelanggan</th>
<th>Nama Pelanggan</th>
<th>Kod Pelanggan</th>
</tr>
<tr>
echo ".$row['idPel'].;
echo ".$row['NamaPelanggan'].;
echo ".$row['KodPelanggan'].;
</tr>
</table>
}
?>
并且错误是
Parse error: syntax error, unexpected '<' in C:xampp2htdocsLIAssignment1proses_simpan2.php on line 10
提前致谢。
你的代码有错误..很多错误。 以下代码有效
<?php
include ("config.php");
mysql_select_db("dbpelanggan") or die(mysql_error());
echo "Sambungan ke pangkalan data berjaya!";
$result = mysql_query("SELECT * FROM pelanggan") or die(mysql_error());
echo '<table width="70%" border="1" cellspacing="0" cellpadding="0" align="center">'
. ' <tr>
<th>ID Pelanggan</th>
<th>Nama Pelanggan</th>
<th>Kod Pelanggan</th>
</tr>';
while($row = mysql_fetch_array( $result )){
echo"<tr>
<td>".$row['idPel']."</td>
<td>".$row['NamaPelanggan']."</td>
<td>".$row['KodPelanggan'].
"</td></tr>";
}
echo "</table>";
?>
尝试这个 :
HTML
代码不能与PHP
代码一起调用。 您需要每次打开和关闭PHP
然后才能尝试启动HTML
代码,并在HTML
代码之后每次打开PHP
代码,然后再尝试在HTML
之后启动PHP
代码。
<?php
include ("config.php");
mysql_select_db("dbpelanggan") or die(mysql_error());
echo "Sambungan ke pangkalan data berjaya!";
$result = mysql_query("SELECT * FROM pelanggan") or die(mysql_error());
while($row = mysql_fetch_array( $result ))
{
?> //you need to close php here
<table width="70%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<th>ID Pelanggan</th>
<th>Nama Pelanggan</th>
<th>Kod Pelanggan</th>
</tr>
<tr>
<?php // open php here
echo $row['idPel'].$row['NamaPelanggan'].$row['KodPelanggan'].;
?> //close php here
</tr>
</table>
<?php //open php here
}
?>
当你想要一些HTML代码时,你需要打开和关闭php。 所以在你的情况下,你会有这样的事情:
<?php
include ("config.php");
mysql_select_db("dbpelanggan") or die(mysql_error());
echo "Sambungan ke pangkalan data berjaya!";
$result = mysql_query("SELECT * FROM pelanggan") or die(mysql_error());
while($row = mysql_fetch_array( $result )) { ?>
<table width="70%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<th>ID Pelanggan</th>
<th>Nama Pelanggan</th>
<th>Kod Pelanggan</th>
</tr>
<tr>
<?php echo $row['idPel']; ?>
<?php echo $row['NamaPelanggan']; ?>
<?php echo $row['KodPelanggan']; ?>
</tr>
</table>
<?php
}
?>
链接地址: http://www.djcxy.com/p/69461.html