PHP, JSON ve JQUERY

0 Cevap php

Ben, benim okuma yaptık hata buldu, ancak henüz php, json ve jquery güzel oynuyor var ... herkes çalışmak için değil ben bu kodu burada göremiyorum bazı şey görebilirim?

Benim clickdates.php dosya json shpould 1 çağrısı yapmak 3 değerleri vardır ... ama ... İşte php dosya yok (ve bunu test ederken, ben 3 değerleri ve bağlamak gerekir 3 id alabilirim jquery) .. sen ben yok o yanlış bir şey görebiliyor musun?

    <?php  
    $choice = (isset($_POST['choice'])) ? date("Y-m-d",strtotime($_POST['choice'])) : date("Y-m-d"); 
    $con = mysql_connect("localhost","root","xxxxxx");  
    if (!$con)  {  die('Could not connect: ' . mysql_error());  }  
    mysql_select_db("inverters", $con);  
    $sql = "SELECT sum(power/1000) AS choice FROM feed WHERE date = '".$choice."' group by date"; $res = mysql_query($sql) or die('sql='.$sql."\n".mysql_error()); 
    $row = mysql_fetch_assoc($res);
    $dayPowerP = array( $row['choice']);
    ?>
    <?php 
$choice = (isset($_POST['choice'])) ? date("m",strtotime($_POST['choice'])) : date("m"); $con = mysql_connect("localhost","root","xxxxxx");  
if (!$con)  {  die('Could not connect: ' . mysql_error());  }  
mysql_select_db("inverters", $con);  
$sql = "SELECT sum(power/1000) AS choice FROM feed WHERE month(date) = '".$choice."'";
$res = mysql_query($sql) or die('sql='.$sql."\n".mysql_error()); 
$row = mysql_fetch_assoc($res);
$monthPowerP = array($row['choice']);
?>
<?php 
$choice = (isset($_POST['choice'])) ? date("Y",strtotime($_POST['choice'])) : date("Y"); $con = mysql_connect("localhost","root","xxxxxx");  
if (!$con)  {  die('Could not connect: ' . mysql_error());  }  
mysql_select_db("inverters", $con);  
$sql = "SELECT sum(power/1000) AS choice FROM feed WHERE year(date) = '".$choice."'";
$res = mysql_query($sql) or die('sql='.$sql."\n".mysql_error()); 
$row = mysql_fetch_assoc($res);
$yearPowerP = array( $row['choice']);
?>    <?php
    $outarr['dayPowerP'] = $dayPowerP;
    $outarr['monthPowerP'] = $monthPowerP;
    $outarr['yearPowerP'] = $yearPowerP;
    echo json_encode($outarr);
    ?>

İşte benim test çıktı php dosyasından budur ... gözlerimde, çalışması gerekir ... ama yok.

{"dayPowerP":["12.7240"],"monthPowerP":["145.0460"],"yearPowerP":["941.0370"]}

İşte onlar json ait değerleri puting gereken çok basit jquery ... ama böyle bir şans değildir ...

    $(document).ready(function () {   
$('#datepicker').datepicker({maxDate: 0, dateFormat: 'yy-mm-dd', onSelect: function(dateText) {
            var myDate = $(this).datepicker('getDate');
            $('#apDiv1').html($.datepicker.formatDate('DD, d', myDate));
            $('#apDiv5').html($.datepicker.formatDate('MM', myDate));
            $('#apDiv7').html($.datepicker.formatDate('yy', myDate));   
   $.ajax({  
            type: "POST",   
            url: "clickdates.php",                  
            data: {choice: dateText}, 
            dataType: "json",  
            success: function(json_data) {  
            $('#apDiv2').html(json_data['dayPowerP']); 
            $('#apDiv6').html(json_data['monthPowerP']);     
            $('#apDiv8').html(json_data['yearPowerP']); 

           } 
        })           
    }});
});

Ben burada ne göremiyorum?

Alan

0 Cevap