Jump to content
php.lv forumi

mistiska probleema ar formu


Benvenuto

Recommended Posts

<form method="post" action="index.php?cat=search">
<input type="text" name="q" size="30" value="">
<input type="submit" value="Meklēt!" name="submit">
</form>

visparastaakaa forma, bet kad ievadu tanii tekstu un nospiezhu enteri, parametri netiek padoti taalaak uz index.php?cat=search, bet konkreetaa lapa, kur atrodas forma, vienkaarshi refreshojas.

seezhu un njifiga nesaprotu kaapeec taa.

vai kaadam ir idejas?

Link to comment
Share on other sites

Formas action ir index.php. Ja ir POST forma, tad GET variabļus neskatās (tātad cat netiek nolasīts). Ja vēlies, lai $_REQUEST['cat']=='search', uztaisi formā slēpto lauciņu:

<input type="hidden" name="cat" value="search" />

Link to comment
Share on other sites

var jau arii shitaa te:

<form method="get" action="index.php?cat=search">
<input type="text" name="q" size="30" value="" />
<input type="submit" value="Mekle-t!" name="submit" />
</form>
<?php
$q=$_GET['q'];
echo "$q";
?>

... nu tipa pataudzinjsh ;)

Link to comment
Share on other sites

×
×
  • Create New...