Ben aslında böyle bir gönderme düğmesi vardı
<form action="<?php $self ?>" method="post" >
<input name="search" type="hidden" >
<INPUT TYPE = "Submit" Name = "Submit1" VALUE = "search">
</form>
Bu statment doğru yaptı
if(isset($_POST['Search'])){}
For a time all was well then i made my submit button a image
<form action="<?php $self ?>" method="post" >
<input name="Search" type="hidden" />
<INPUT value="Search" TYPE="image" SRC="search.jpg" BORDER="0" ALT="Search">
</form>
Daha fazla zaman için tüm i bir metin bağlantıdan içine bu düğmeyi yapmak istedim iyi e kadar oldu ..
I looked on the internet and read many things where i learned that it cant be done in html but java script was needed.. so i tryed to use this code but it no longer made my statment true..
Bu javascript i buldu düğmesini teslim olmaktır
<a href='javaScript:document.FORM_NAME.submit()'>Submit</a>
My two questions to you wizards out there are 1) where do i put the value of the submit? 2) how do i get this to replace my earlyer submit buttons?