php ve javascript tasarım

0 Cevap php

soru PHP ve JavaScript ile ilgilidir

Şimdilik her tablo, her biri id = "field_from_table" vardır giriş etiketleri ile bir form vardır

GLOBAL_TABLE=name of that table
GLOBAL_FIELDS=name of fields in that table
GLOBAL_ID=ID value for table.

every field also have a label for im. some of the fields are not text.

I / O girişi etiketleri ayarlamak almak istiyorum.

şimdi bu gibi tasarım bulunuyor:

    <script>
    function get()
    {
    id=GLOBAL_ID
    $.post("handle.php",{type:"get",tablename:GLOBAL_TABLE,fields:GLOBAL_FIELDS,id:GLOBAL_ID),function(data)
    {
       fieldValues=/*javascript explode data*/;
       foreach(/*array of fields as idx=>fieldName*/)
           {$("#"+fieldName)=fieldValues[idx];}
    }
    function set()
    {
    /*for each GLOBAL_FIELDS as idx=>fieldName
      values[fieldName]=$("#"+fieldName).val;
    */

    valuesI=/*implode values*/;
    $.post("handle.php",{type:"set",tablename:GLOBAL_TABLE,fields:GLOBAL_FIELDS,values:valuesI),
      function(data)
        {
        if (data!=null) alert ("error");
        }
    }
</script>

handle.php updates the information into table and fields. or selects and outputs CSV.

problem is that i need to output a field list from php so javascript can use it and i don't think that using javascript that way is a good idea

Daha iyi bir tasarım vardır.

İyi bir cevap ya da bir tavsiyem en takdir edilmektedir.

Arye

0 Cevap