<form action="service.php" method="POST">
<fieldset>
<input type="button" name="getMa" onclick="window.open('service.php')"value="MA anzeigen"/>
<input type="text" size="5" maxlength="5" name="MA_ID" value=""/><br><br>
</fieldset>
service.php:
if(isset($_POST['getMa']))
{
echo "getMa gedrückt";
}
I just want to know which of my buttons has been pushed, what am I doing wrong? Any help appreciated, I'm new to this stuff, thx guys Regards Ismir
valuealsovalue=""