Jump to content
php.lv forumi

veertiiba uz naakamo lapu


keiby

Recommended Posts

kauko es nemaaku izdariit, laikam. ir shaadi kodi :

 

1.php:

----------------------------------------------------------

<form action="2.php" method="post">
<a href="1.php?veert=2">click me</a>
<?
switch ($_GET['veert']){
case "2":{ echo "<input type=\"submit\" value=\"Tālāk\">"; break; }
}
?>
</form>

----------------------------------------------------------

un

 

2.php:

----------------------------------------------------------

<? echo $veert; ?>

----------------------------------------------------------

 

beigaas netiek izdrukaats $veert :unsure:

Edited by keiby
Link to comment
Share on other sites

hmm. paartaisiiju 2.php uz shaadu:

 

<form action="2.php" method="post">
<a href="1.php?veert=2">click me</a>
<?
switch ($_GET['veert']){
case "2":{ echo "<input type=\"submit\" value=\"Tālāk\">"; break; }
}
?>
<input type="hidden" name="veert" value="<? echo $veert; ?>">
</form>

 

respektiivi, ar priekhpeedeejo rindinju. un tagad straadaa un ir tas, ko es gribeeju. Bet jautaajums cik tas ir pareizi ?

Link to comment
Share on other sites

Diezgan dīvains tev tas teikums padevās!

bubu tak teica:

  $_POST (input lauki) vērtības tiek padotas, tad kad formu submito

$_GET (linku parametri) vērtības tiek padotas, tad kad klikšķina uz linka, vai formas actionā

Link to comment
Share on other sites

×
×
  • Create New...