Jump to content

update multiple feilds in table at once


mbh23

Recommended Posts

Currently I have a site that shows items from a database and they can click on the cell and change the info, click save and it updates that cell.  This is done with the code below

 

if($_POST[action]=='updatedivision')
{
	$query="update master set division='{$_POST[updatevalue]}' where id=$_POST[updateid]";
	mysql_query($query) or die("Couldn't update part: ".mysql_error());
}


function makeeditable(cell,id,action,isdisabled)
{
	if(editmode == 1 || isdisabled==1 ) return;
	editmode = 1;
	cell.innerHTML = '<input type=text size=5 id="cell_'+id+'" value="'+cell.innerHTML+'">' +
					'<input type=button value="Save" onClick=\'updatecellcontents('+id+',"'+action+'")\'>';
}
function updatecellcontents(id,action)
{
	document.items.action.value = action;
	document.items.updateid.value = id;
	document.items.updatevalue.value = document.getElementById('cell_'+id).value;
	document.items.submit();
}



<td onclick='makeeditable(this,$row[id],\"updatedivision\",$disableinfo);'>{$row[division]}</td>"

 

How can I make it so they can edit multiple feilds then click on the save button and it will update all of them?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.