Tema: Jquery y php
Ver Mensaje Individual
  #3 (permalink)  
Antiguo 18/12/2011, 14:37
shaserUsa
 
Fecha de Ingreso: octubre-2011
Ubicación: USA
Mensajes: 166
Antigüedad: 13 años, 2 meses
Puntos: 19
Respuesta: Jquery y php

este es el codigo html

Código HTML:
Ver original
  1. <div id="form_area">
  2.             <div id="mycarousel">
  3.                 <?php
  4.                    for($v=0;$v<6;$v++)
  5.                    {
  6.                ?>
  7.                     <div class="box" style="width: 800px; height: 250px; background: #FFFF66">
  8.                         <form name="testform<?php echo $v?>" action="" id="ftest">
  9.                             <input name="textN<?php echo $v?>" value="<?php echo $v."dsdsf"?>" type="text"/><br>
  10.                             <input name="textA<?php echo $v?>" value="test" type="text"/><br>
  11.                         </form>
  12.                    </div>
  13.                 <?php
  14.                    }
  15.              ?>
  16.              
  17.             </div>
  18.             <div id='area_botton'><a href="#" id="upda">Update App</a></div>
  19.                 <input name="previous" id="previous" type="button" value="Previous" />
  20.                 <input name="next" id="next" type="button" value="Next" />
  21.         </div>

aqui el codigo javascript

Código Javascript:
Ver original
  1. var bValid = true;
  2.                  allFields.removeClass( "ui-state-error" );
  3.  
  4.                  bValid = bValid && checkValue( textN, "Ther");
  5.                  bValid = bValid && checkValue( textA, "Proc");
  6.                  
  7.                  var TempArray = dd.toString();
  8.                  var sValueT = document.pUpdate.textN.value
  9.                  var sValueP = document.pUpdate.textP.value
  10.                  var url = location.href
  11.                  
  12.                  if ( bValid ) {
  13.                      tips
  14.                     .text( "* fields are required." )
  15.                     $.ajax({
  16.                         type: "GET",
  17.                         url: "Main/P/p_ajax.php",
  18.                         data: "op=3&therCod="+sValueT+"&proCod="+sValueP+"&desc="+sValueD+"&date="+TempArray,
  19.                         success: function(Uerror1)
  20.                         { alert(Uerror1);
  21.                             if(Uerror1!=0)
  22.                             {
  23.                                 $( "#dialogo-error" ).dialog( "destroy" );
  24.                                 $( "#dialogo-error" ).html("<table><tr><td><img src='images/delete32.png' /></td><td>This day ("+error+ ") have an app</td></tr></table>");            
  25.                                 $( "#dialogo-error" ).dialog({
  26.                                     resizable: false,
  27.                                     height:150,
  28.                                     modal: true,
  29.                                     show: 'drop',
  30.                                     buttons: {
  31.                                         "Close": function() {
  32.                                             $( this ).dialog( "close" );
  33.                                         }
  34.                                     }
  35.                                 });
  36.                             }
  37.                             else if(Uerror1==0)
  38.                             {
  39.                                 window.location=url;
  40.                             }
  41.                         }
  42.                     });//ajax
  43.                  }

codigo php

Código PHP:
Ver original
  1. $temp = $app_obj->app_details_gral_p($_REQUEST['date'],$_SESSION['p_sess']);
  2.                 $result_detail_p_app = mysql_fetch_array($temp);
  3.  
  4.                 if($app_obj->ther_p_update($_SESSION['p_sess'], $_REQUEST['therCod'], "0", $_REQUEST['date'],
  5.                                                                    $_SESSION['patient_sess'], $result_detail_p_app['ther_id'],
  6.                                                                    "0", $_REQUEST['date'], $_REQUEST['desc'], $_REQUEST['proCod']))
  7.                 {
  8.                    
  9.                 }