This is the code that I posted yesterday. Adding of "Remove" feature in this code is perfectly solved by KOR, but still I have a new question, this time regarding PHP.
-My question is, how to insert to MySql Database, all the data that I've entered on the added fields/textbox???, I think this is my last question on this project..... Your assistance is highly appreciated. Thanks in advance!
THE CODE:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<script type="text/javascript">
var clone;
function cloneGroup(){
var tbodies=document.getElementById('mytab').getElementsByTagName('tbody');
clone=tbodies[tbodies.length-1].cloneNode(true);
var lastCell=clone.getElementsByTagName('td')[4];
lastCell.innerHTML='Delete this group';
lastCell.style.cursor='pointer';
lastCell.onclick=function(){this.parentNode.parentNode.parentNode.removeChild(this.parentNode.parent Node)};
}
function addGroup(){
var table=document.getElementById('mytab');
table.appendChild(clone);
cloneGroup();
}
onload=cloneGroup;
</script>
</head>
<body>
<form action="">
<table id="mytab" border="0">
<tbody>
<tr>
<td> Link URL: </td>
<td colspan="2"><input type="text" name="linkurl[]2"></td>
</tr>
<tr>
<td> Link Description: </td>
<td> <textarea name="linkdesc[]" cols="50" rows="5"></textarea> </td>
<td></td>
</tr>
</tbody>
</table>
</form>
<br>
<a href="#" onclick="addGroup();return false">Add a new group</a>
</body>
</html>
Bookmarks