JS / jQuery / PHP: PHP değişkenleri kullanarak bir URL oluşturmak için çalışıyoruz

0 Cevap php

Bu kod üreten ediyorum

$.ajax({
        url: '/orders/modify/action/',
        type: "POST",
        dataType: 'json',
        data: 'id='+10+
              '&commento='+$('#shop_order_status_history_comments').val()+
              '&id_status='+$('#shop_order_status_history_orders_status_id').val()+
              '&notify_client='+$('#shop_order_status_history_notify_client').val()+
              '&local_part_email='+j.garpe+   // the error goes here
              '&domain_email='+domain.com,
        success:function(data){

Ama bu hatayı alıyorum:

"Uncaught referenceError: j is not defined".

Kod şudur:

      ...  
      '&local_part_email='+<?php echo $local_part_email?>+
      ...

Herhangi bir yardım?

Selamlar

Javi

0 Cevap