Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
161 views
in Technique[技术] by (71.8m points)

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

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>';
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

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>';

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.9k users

...