2017-04-22 3 views
1

私はテーブルからレコードの数を取得するMySQLのクエリを書いている。 私はAngles jに非常に新しいですが、Angular jsへの出力をどのように表示するのか分かりません。 PHPとMySQLのクエリの下で親切にチェックしてください。どのように角を使用してPHP MySQLクエリの出力を表示する

<?php 
 

 
include("../include/connect.php"); 
 

 
$sql="SELECT clientDB_Status FROM ms_approach_clients where clientDB_Status='Lead-Successful'"; 
 

 
if ($result=mysqli_query($con,$sql)) 
 
    { 
 
    // Return the number of rows in result set 
 
    $rowcount=mysqli_num_rows($result); 
 
    printf("Result set has %d rows.\n",$rowcount); 
 
    // Free result set 
 
    mysqli_free_result($result); 
 

 
    } 
 

 
mysqli_close($con); 
 
?>

+1

角の入門チュートリアルは、ここで開始するのに理想的な場所のように思えるを見ることができます

<?php include("../include/connect.php"); $sql="SELECT clientDB_Status FROM ms_approach_clients where clientDB_Status='Lead-Successful'"; if ($result=mysqli_query($con,$sql)) { // Return the number of rows in result set $rowcount=mysqli_num_rows($result); printf("Result set has %d rows.\n",$rowcount); // Free result set $data = array(); while ($row = mysqli_fetch_array($result)) { $data[] = $row; } print json_encode($data); } mysqli_close($con); ?> 

。チュートリアルでは、AJAXリクエストを作成してレスポンスを処理する方法について説明します。 – David

答えて

1

あなたはそれを試すことができます。あなたは例のリンク

http://stackoverflow.com/questions/26229382/how-to-display-data-from-mysql-using-angular-js-php 
関連する問題