PHP erroring yankı json_encode

0 Cevap php

Bu neden çalışmadığını herhangi bir fikir:

$result = mysql_query("SELECT cust_name, description from `projects` where project_no = '".$project_no."'") or die(mysql_error());
            while ($row = mysql_fetch_array($result)) {
                echo json_encode(
                      array("message1" => '".$row['cust_name']."', 
                      "message2" => '".$row['description']."')
                 )
            }

Bu hatadır: Parse error: syntax error, unexpected T_STRING, expecting ')' in /admin/customerfilter.php on line 14

Hat 14 ile başlayan satır "dizi ..."

Teşekkürler :)

0 Cevap