echo jquery in PHP syntax error - can't find my mistake

谁说我不能喝 提交于 2019-12-14 03:24:45

问题


I try to echo out jQuery in PHP but it gives me following error whatever I do:

Parse error: syntax error, unexpected 'foreach' (T_FOREACH), expecting ',' or ';' in /var/www/html/login/application/controllers/sellercentral.php on line 309

The code:

echo '<script>
    $( document ).ready(function() {
         $("#Drafts > tbody:last").append('foreach($this->central as      $key2 => $value2) {
            '<tr> 
            <td><a href='. $value2->Token .'>Edit</a></td>
            <td class=T id='. $value2-    >Token.'>'.htmlentities($value2->Title).'</td>
            </tr>
        '.}.' );

                         });

            </script>';

回答1:


You can't use a foreach in a echo statement! Just break them up like this:

echo '<script>
      $( document ).ready(function() {
      $("#Drafts > tbody:last").append(';

foreach($this->central as $key2 => $value2) {
    echo '<tr> 
            <td><a href='. $value2->Token .'>Edit</a></td>
            <td class=T id='. $value2-    >Token.'>'.htmlentities($value2->Title).'</td>
          </tr>';
}

echo  ');});</script>';



回答2:


I think you should use an echo inside of your foreach loop. something like that :

echo '<script>
    $( document ).ready(function() {
    $("#Drafts > tbody:last").append(';

foreach($this->central as      $key2 => $value2) {
    echo '<tr> 
        <td><a href='. $value2->Token .'>Edit</a></td>
        <td class=T id='. $value2-    >Token.'>'.htmlentities($value2->Title).'</td>
        </tr>'; 
}
echo ' );
    });
</script>';


来源:https://stackoverflow.com/questions/28244054/echo-jquery-in-php-syntax-error-cant-find-my-mistake

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!