estoy manejando un sitio en el cual tengo un iframe y de alli llamo a mis paginas
el problema es este.
aqui esta el iframe
Cita:
esta es la pgina add categories <td width="120"><a href="add_products.php" target="principal">» Add Product </a><br />
<a href="list_products.php" target="principal">» List Product </a><br />
<a href="add_categories.php" target="principal">» Add Categories </a><br />
<a href="list_categories.php" target="principal">» List Categories </a><br /></td>
<td><iframe frameborder="0" scrolling="no" width="660px" height="1000px" name="principal" id="principal" align="top" ></iframe>
<a href="list_products.php" target="principal">» List Product </a><br />
<a href="add_categories.php" target="principal">» Add Categories </a><br />
<a href="list_categories.php" target="principal">» List Categories </a><br /></td>
<td><iframe frameborder="0" scrolling="no" width="660px" height="1000px" name="principal" id="principal" align="top" ></iframe>
Cita:
cuando le doy click a add que me agrega la categoria <table width="660" height="451" border="0" cellpadding="0" cellspacing="0" id="panel">
<tr>
<form name="formCategory" id="formCategory" method="post" action="list_categories.php" onSubmit="return checkForm();">
<td><table border="0" cellpadding="0" cellspacing="0" id="panel">
<tr>
<td width="120" height="30">Categories Name </td>
<td><input name="name" type="text" class="input-panel"/></td>
</tr>
<tr>
<td height="30"> </td>
<td><input type="submit" name="add" id="add" value="ADD CATEGORY" class="button" /> </td>
</tr>
</table>
</form>
</td>
</tr>
</table>
<tr>
<form name="formCategory" id="formCategory" method="post" action="list_categories.php" onSubmit="return checkForm();">
<td><table border="0" cellpadding="0" cellspacing="0" id="panel">
<tr>
<td width="120" height="30">Categories Name </td>
<td><input name="name" type="text" class="input-panel"/></td>
</tr>
<tr>
<td height="30"> </td>
<td><input type="submit" name="add" id="add" value="ADD CATEGORY" class="button" /> </td>
</tr>
</table>
</form>
</td>
</tr>
</table>
luego al entrar a otra pagina me la abre en una pagina aparte y deberia seguirla abriendo en la misma pagina
le tengo que poner el
Cita:
pero cuando lo hago igual me lo abre en otra pagina creo no se donde ponerlotarget="principal"
yo lo pongo en el from
Cita:
pero me abre otra pagina y no es lo que preciso hacer <form name="formCategory" id="formCategory" method="post" action="list_categories.php" target="principal" onSubmit="return checkForm();">
cuando no lo pongo esta pagina si me la abre dentro del iframe pero si dentro del menu por ejemplo clickeo en addproducts me la abre en otra pagina aparte no dentro del iframe.
lo raro es que la parte de productos la hago igual y esa si me la abre dentro del iframe.
quisiera saber como hago
desde ya muchas gracias