Arama bir ek anahtar kelime eklemek nasıl?

0 Cevap php
<form action="search.php" method="post" class="search" id="search">
     <input name="search" id="search" type="text" value=""><br>
</form>
...
echo ".urlencode($_POST['search']).";

here is my basic search box. I want: 1. open the page first, the ".urlencode($_POST['search'])." is empty. 2. when the client type some word and make a search, the ".urlencode($_POST['search'])." will always add a additional keyword after client type word.

Örneğin, ne zaman müşteri tipi: elma, ".urlencode($_POST['search'])." kısım gösteri: apple20%juice, zaman istemci türü: turuncu, "urlencode ($ _POST ['arama']).. " part gösteri: orange20%juice, her zaman anahtar kelime arkasında bir ek anahtar 20%juice ekleyin.

Bu bir ulaşmak için nasıl? Teşekkürler.

0 Cevap