gpt4 book ai didi

php - 意外的 $end : I Know exactly where the culprit is, 但不知道如何修复

转载 作者:太空宇宙 更新时间:2023-11-03 10:26:07 24 4
gpt4 key购买 nike

我收到此错误消息:

"Parse error: syntax error, unexpected $end in C:\Users\Stacky\Desktop\xampp\htdocs\wweff\stackhelp.php on line 822"

我一直试图通过修改我的代码的一行(第 54 行)来使这段代码正常工作。

这是完整的代码。留意“//^^^^ 右上方是第 54 行。”在下面的代码中:

<html>
<head>
</head>
<body>
<?php
$objConnect = mysql_connect("localhost","root","") or die(mysql_error());
$objDB = mysql_select_db("thegoodhumor");
$strSQL = "SELECT * FROM gallery";
if (!isset($_GET['Page'])) $_GET['Page']='0';
$objQuery = mysql_query($strSQL);
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 16; // Per Page

$Page = $_GET["Page"];
if(!$_GET["Page"])
{
$Page=1;
}

$Prev_Page = $Page-1;
$Next_Page = $Page+1;

$Page_Start = (($Per_Page*$Page)-$Per_Page);
if($Num_Rows<=$Per_Page)
{
$Num_Pages =1;
}
else if(($Num_Rows % $Per_Page)==0)
{
$Num_Pages =($Num_Rows/$Per_Page) ;
}
else
{
$Num_Pages =($Num_Rows/$Per_Page)+1;
$Num_Pages = (int)$Num_Pages;
}

$strSQL .=" order by GalleryID ASC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
$cell = 0;
echo '<table border="1" cellpadding="2" cellspacing="1"><tr>';
while($objResult = mysql_fetch_array($objQuery))
{
if($cell % 4 == 0) {
echo '</tr><tr>';
}

if($cell == 2 || $cell == 3) {
echo '<td>RESERVED</td>';
} else {
echo '<td><img src="https://s3.amazonaws.com/imagetitle/' .
$objResult["Picture"];?>" height="190" width="190" /> . .$objResult["GalleryName"].'\</td>';
//^^^^ RIGHT ABOVE IS LINE 54.
}
$cell++;
}
echo '</tr></table>';
?>
<?php
//DELETED PAGINATION CODE for the sake of simplicity in StackOverflow
?>
</body>
</html>
<?php
mysql_close($objConnect);
?>

最佳答案

        $objResult["Picture"];?>" height="190" width="190" /> . .$objResult["GalleryName"].'\</td>';

包含?> ,它告诉 PHP 解释器停止解释,换句话说,后面的所有内容都是原始 HTML。

尝试更改 ;?>. , 放一个 `之前 height="190" , 并删除 \之前 </td> , 给予:

        $objResult["Picture"] . 'height="190" width="190" />' .
$objResult["GalleryName"] . '</td>';

关于php - 意外的 $end : I Know exactly where the culprit is, 但不知道如何修复,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5374190/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com