i have an div (id="id_content") in Main.html, and an php file "cmp.php" is dynamically loaded by JQuery.load() in "id_content". It is working fine.
However after the "cmp.php" called itself (for updating) using following code : <form action="<?php echo $_SERVER['PHP_SELF']?>" target="_self" method="post" >
the "cmp.php" occupies the complete browser, what i want ist that "cmp.php" is always being displaye in div "id_content".
Thanks in advance.