This code will submit a form to a new window
<form action="..." method="post" target="_new">
But is it possible to make the new window start without the address bar and define its size ?
This code will submit a form to a new window
<form action="..." method="post" target="_new">
But is it possible to make the new window start without the address bar and define its size ?
Using javascript :
<a href="link" onClick="javascript:window.open('http://link','Windows','width=650,height=350,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,location=no,directories=no,status=no');return false")">Link text</a>
you can mention header tag on your action page. is this what you are looking for?
header("location:something.php");