0
$table="<table border='1'>
    <tr>
    <th>FIRST NAME</th>
    <th>LAST NAME</th>
    <th>EMAIL</th>
    <th>GENDER</th>".
    while($row = mysql_fetch_array($result3))
    {
        $action="Action";
        $var=$action.$count;
         ."<th>" .$var. "</th>".
        $count=$count+1;

    } 

    ."        </tr>".

    while($row = mysql_fetch_array($result2))
    {

         ."<tr>".
         "<td>".$row['firstname']."</td>".
         "<td>".$row['lastname']."</td>".
         "<td>".$row['email']."</td>".
        if($row['gender']=='m')
        {
            $gend='male';
        }
        else
        {
            $gend='female';
        }
         "<td>".$gend."</td>".

        $result3=$db->selectUserPermission($uid);
        $id=$row['userid'];
        $loginuser=$_SESSION['LOGINUSER'];
        while($row = mysql_fetch_array($result3))
        {

              ."<td>".
            if($row['permid']==1)
            {
                $permission="VIEW";
                $btnid=$id."_VIEW";
                 ."<button id=$btnid name=$btnid onclick='getFunctionView($id)'>".$permission."</button>".
            }
            else  if($row['permid']==2)
            {
                $permission="EDIT";
                $btnid=$id."_EDIT";
                 ."<button id=$btnid name=$btnid onclick='getFunctionEdit($id)';>".$permission."</button>".
            }
            else  if($row['permid']==3)
            {
                if($id!=1 || $id!=$loginuser)
                {
                $permission="DELETE";
                $btnid=$id."_DELETE";
                 ."<button id=$btnid name=$btnid onclick='getFunctionDelete($id)';>".$permission."</button>".
                }
            }
            else  if($row['permid']==4)
            {
                if($id!=1)
                {
                $permission="PERMISSION";
                $btnid=$id."_PERMISSION";
                 ."<button id=$btnid name=$btnid onclick='getFunctionPermission($id)';>".$permission."</button>".
                }
            }
            else  if($row['permid']==5 && $loginuser==$id)
            {
                $permission="ADD USER";
                 ."<button id=$btnid name=$btnid onclick='location.href=\"adduser.html\"'>".$permission."</button>".
            }
            else
            {
            }

             ."</td>".
        }
    }
     ."</tr>
     </table>";
     echo $table;

これは ajax によって呼び出される php ページのコードです。ここで $result2 と $result3 は、2 つの SQL クエリを使用して取得された 2 つの結果セットです。これら 2 つの結果を使用してテーブルを生成し、そのテーブルを php 変数 $table に格納し、 ajaxで、htmlテキストとして直接割り当てたいので、ajaxコードを以下に示します。

   $(document).ready(function(){

    var temp='getUser';
    $.ajax ({
                type:'GET',
                url: 'listdetails.php',
                data:{ud:temp},
                success:function(data)
                        {
                            document.getElementByID("userList").innerHTML=data;
                        }

           });

});

そして、私の問題はphp変数$ table.Itの作成にあります。連結ごとにエラーが表示されます( "." )。これはエラーメッセージです。行 39".php 変数 $table を作成するための良い方法を誰か提案できますか?この $table は ajax によって呼び出される php ページにあることを思い出してください。

4

3 に答える 3

3

連結を間違って使用しています。

  • 変数の代入($ someVar =)を条件付き(if)またはループ(while)ステートメントと連結しないでください
  • 入れないでください。後; または}。これらの文字は前のコマンドを終了し、。で次のコマンドを開始できないためです。

これがあなたが始めるためにあなたのコードの最初の部分の作り直されたバージョンです:

$table="<table border='1'>
<tr>
<th>FIRST NAME</th>
<th>LAST NAME</th>
<th>EMAIL</th>
<th>GENDER</th>";

while($row = mysql_fetch_array($result3))
{
    $action="Action";
    $table.="<th>" .$action.$count. "</th>";
    $count++;
} 

$table .= "        </tr>";
于 2012-12-11T07:39:07.040 に答える
0
$sTable = '
<table>
 <tr>
  <td></td>
 </tr>';

while( false ) {
 $sTable .= '';
}

$sTable .= '
 </table>';

echo $sTable;

または私がするように

$sBuffer = '';
while( code goes here ) {
 $sBuffer .= '
 <tr>
  <td></td>
 </tr>';
}


echo '
<table>
 <tr>
  <td></td>
 </tr>
 ' . $sBuffer . '
</table>';
于 2012-12-11T07:38:07.250 に答える
0

あなたがしたいことはテーブルをエコーすることだけであることを考えると、必要なときにのみPHPを終了/開始します。きれいなコードは以下のとおりです。

<table border='1'>
<tr>
<th>FIRST NAME</th>
<th>LAST NAME</th>
<th>EMAIL</th>
<th>GENDER</th>
<?php
while($row = mysql_fetch_array($result3))
{
        $action="Action";
        $var=$action.$count;  //$count is not defined yet in your example, first time will be ''
        echo "<th>" .$var. "</th>";
        $count=$count+1;
}
?>
</tr>

<?php
while($row = mysql_fetch_array($result2))
{
    ?>
    <tr>
    <td><?php echo $row['firstname']; ?></td>
    <td><?php echo $row['lastname']; ?></td>
    <td><?php echo $row['email']; ?></td>
    <td><?php echo (($row['gender']=='m') ? 'male' : 'female'); ?></td>

    <?php
    $result3=$db->selectUserPermission($uid);
    $id=$row['userid'];
    $loginuser=$_SESSION['LOGINUSER'];
    while($row = mysql_fetch_array($result3))
    {
        echo "<td>";

        switch ($row['permid']) {
            case 1:
                $permission="VIEW";
                $btnid=$id."_VIEW";
                echo "<button id=$btnid name=$btnid onclick='getFunctionView($id)'>".$permission."</button>";
                break;
            case 2:
                $permission="EDIT";
                $btnid=$id."_EDIT";
                echo "<button id=$btnid name=$btnid onclick='getFunctionEdit($id)';>".$permission."</button>";
                break;
            case 3:
                if($id!=1 || $id!=$loginuser)
                {
                    $permission="DELETE";
                    $btnid=$id."_DELETE";
                     echo "<button id=$btnid name=$btnid onclick='getFunctionDelete($id)';>".$permission."</button>";
                }
                break;
            case 4:
                if($id!=1)
                {
                    $permission="PERMISSION";
                    $btnid=$id."_PERMISSION";
                    echo "<button id=$btnid name=$btnid onclick='getFunctionPermission($id)';>".$permission."</button>";
                }
                break;
            case 5:
                if($loginuser==$id)
                {
                    $permission="ADD USER";
                    echo "<button id=$btnid name=$btnid onclick='location.href=\"adduser.html\"'>".$permission."</button>";
                }
                break;
        }

        echo "</td>";
    }
}
?>
</tr>
</table>
于 2012-12-11T08:20:02.777 に答える