jQuery form eklentisi ile 2 değişkenler ile yankı json_encode

0 Cevap php

php dosyası içinde kod:

$variable1 = array( 'variable1' => "$variable1" );
      $variable2 = array( 'variable2' => "$variable2" );
            echo json_encode ($variable1);

Ana sayfa içinde kod:

<span id="variable1"></span>
<span id="variable2"></span>

I am trying to make it so it echos both variables in their spans. doing 2 echos does not work, but the single as coded above works

Bunun için jquery formu eklentisi kullanarak.

0 Cevap