Web sayfalarında düğmeleri Gönder PHP

4 Cevap php

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?

4 Cevap

Bir metin bağlantısı içine bir düğme yapma basit bir CSS.

<input type="submit" id="submit" value="submit" class="submitbutton" />

CSS:

input.submitbutton{
margin: 0;
border: none;
background-color: transparent;
padding: 0;
}
/* Make sure the hover has the same element properties as the first, obviously changing the font colour on hover is something acceptable */
input.submitbutton:hover{
margin: 0;
border: none;
background-color: transparent;
padding: 0;
}

Eğer JavaScript link ne için form gelen bir ad vermek gerekir başlayanlar için (Bu durumda, FORM_NAME):

<form name="FORM_NAME" action="<?php $self ?>" method="post" >
  <input name="search" type="hidden" />
  <a href='javaScript:document.FORM_NAME.submit()'>Submit</a>
</form>

Sonra formu denetler sayfada, input gelir ki, $_POST['search'] için kontrol etmeniz gerekir. Ben dava konularda sanmıyorum, ama her zaman yine aynı dizesini kullanarak kontrol etmek mantıklı.

Ben bir şey göndermek için görünmüyor çünkü bu formu yapmak ne demek olduğunu% 100 emin değilim, kullanıcı bir şey aramak böylece bir metin girişini kullanmak istemiyorum?

Eğer bir gönderme düğmesi gibi bir görüntü istiyorsanız? Neden düğme elemanı kullanmayın

<button name="search" value="search" type="submit">
    Send<img src="/icons/wow.gif" alt="wow" /></button>

see: http://www.w3.org/TR/html401/interact/forms.html#h-17.5

Sadece meraktan soruyorum, nasıl javascript olmadan kullanıcılar formu gönderdikten etkin olacak?

Nasıl tarzı yerine bir düğme daha metin gibi görünmek girişi göndermek CSS kullanmaya ne dersiniz?

examples here: http://cssm.wordpress.com/2006/10/01/how-do-i-make-a-submit-button-look-like-text/ http://forums.digitalpoint.com/showthread.php?t=403667