It loads the field names instead of values into the db....

Regards,
Nat

On Apr 22, 2:26 pm, "Natkeeran L.K." <natkee...@gmail.com> wrote:
> Actually, it does not load it the db....
>
> http://pssnet.com/~devone/ajqtable/editgrid2.html
>
> include("dbc.php");
> $var1 = $_POST['service_id'];
> $var2 = $_POST['name'];
>
> //$var1 = "abc";
> //$var2 = "xyz";
>
> mysql_query("INSERT INTO
> testwrite (service_id, name)
> VALUES('$var1', '$var2') ")
> or die(mysql_error());
>
> Regards,
> Nat
>
> On Apr 22, 2:13 pm, "Natkeeran L.K." <natkee...@gmail.com> wrote:
>
> > Hello Tony:
>
> > Thanks for reply.
>
> > Loaded those to the header:http://pssnet.com/~devone/ajqtable/editgrid2.html
>
> > When clicked over it,the form automatically closes it.
>
> > Regards,
> > Nat
>
> > On Apr 22, 1:43 pm, Tony <t...@trirand.com> wrote:
>
> > > Hello,
> > > FireFox console reported a error: jQuery(a).jqDrag is not a function
> > > This means that you do not have loaded:
> > > 1. jqModal.js
> > > 2. jqDnR.js
> > > 3. jqModal.css
>
> > > Load these files in your head section
> > > Regards
> > > Tony
>
> > > On Apr 22, 8:32 pm, "Natkeeran L.K." <natkee...@gmail.com> wrote:
>
> > > > Hello:
>
> > > > I am using Jqgrid, and testing how the editing feature work.  When the
> > > > row is clicked, it shows the form to edit.  However, entering the info
> > > > and submitting does not work.
>
> > > >http://pssnet.com/~devone/ajqtable/editgrid.html(Alsoseebelow)
>
> > > > At the php side I am simply trying to get those parameters and write
> > > > to db.
> > > > $var1 = $_POST['service_id'];
> > > > $var2 = $_POST['name'];
>
> > > > Any help appreciated.  Thanks.
>
> > > > Regards,
> > > > Nat
>
> > > > jQuery(document).ready(function(){
>
> > > > var lastsel;
>
> > > > jQuery("#list2").jqGrid({
> > > >     url:'summary3.php?nd='+new Date().getTime(),
> > > >     datatype: "json",
> > > >     colNames:['service_id', 'Services'],
> > > >     colModel:[
> > > >         {name:'service_id',index:'service_id', width:75, editable:
> > > > true},
> > > >         {name:'name',index:'name', width:175, editable: true},
> > > >                 ],
> > > >     pager: jQuery('#pager2'),
> > > >     rowNum:10,
> > > >     rowList:[10,20,30],
> > > >     imgpath: 'themes/sand/images',
> > > >     sortname: 'id',
> > > >     viewrecords: true,
> > > >          sortorder: "asc",
> > > >          editurl: 'editgrid.php',
> > > >          myType: "POST",
>
> > > >    caption: "Service Types"
> > > >    });
>
> > > >  $("#bedata").click(function(){
> > > >  var gr = jQuery("#list2").getGridParam('selrow');
> > > >  alert(gr);
> > > >  if( gr != null )
> > > >  jQuery("#list2").editGridRow(gr, {editData:{name: "name", service_id:
> > > > "service_id"}},{height:280,reloadAfterSubmit:true});
> > > >  else alert("Please Select Row");
> > > >  });
>
> > > > });  <!-- End Firs JQuery -->

Reply via email to