i ilk kişi o işi yapmak için bana ne sormak denedi ama gönderme düğmesi $ _POST o olsun çünkü benim düğmesi yanlış (<input type="submit" name="submit" value="Submit" onClick="show_content('div_2'); return false;"/>
in ['submit'] göndermek değil bir sorun vardı ) i Tab2 içeriği i düğmesi markası kod düzenlemek eğer ben bunu takdir edecektir benim kod aşağıda bunu göndermek aldığınız bir php kodu var söz düşmek
<ul class="TabbedPanelsTabGroup">
<li class="TabbedPanelsTab" tabindex="0">Tab1</li>
<li class="TabbedPanelsTab" tabindex="0">Tab2</li>
</ul>
<div class="TabbedPanelsContentGroup">
<div class="TabbedPanelsContent" id="div_1">
//this is where the content of the tab1 will be and i have another form in this content too
</div>
<div class="TabbedPanelsContent" id="div_2">
//this is where the content of the tab2 will be
<form action="home.php" method="post">
<?php
if (isset($_POST['submit'])) {
if(empty($_POST['boded']){
echo"Please do it again.";
}else{
$mgs = ($_POST['boded']);
//then insert to my database
}
?>
<form action="home.php" method="post">
<textarea id="message" name="boded" rows="5" cols="40"></textarea>
<input type="submit" name="submit" value="Submit" onClick="show_content('div_2'); return false;"/>
</div>