Nezinītis Posted February 2, 2010 Report Share Posted February 2, 2010 (edited) Esmu izveidojis primitīvu foruma paraugu, kurā var pievienot tēmas un tās tēmas komentēt. Bet pēc manas programmatūras prasību specifikācijas ir teikts, ka pēc komentēšanas ir jābūt izvēlei - * atgriezties uz pašu sākumu; * atgriezties pie komentētās tēmas. Uz sākumu nav problēma, bet atgriezties pie tēmas gan. Mēģināju šādi: <form name="input" action="theme.php?id=<?=$_GET[id]?>"> <input type="submit" value="Doties uz sākumu sākumā" /> </form> "Ķipa" plānots, ka atgriežās uz pēdējo vērtību, kāda tika $_GET[id] piešķirta. EDIT: Ļoti atvainojos, biki apjuku un ierakstīju tēmu nepareizajā sadaļā, varat lūdzu pārmest? Edited February 2, 2010 by Nezinītis Quote Link to comment Share on other sites More sharing options...
fish Posted February 2, 2010 Report Share Posted February 2, 2010 action="theme.php?id=<? echo $_GET['id']; ?>" Quote Link to comment Share on other sites More sharing options...
Nezinītis Posted February 2, 2010 Author Report Share Posted February 2, 2010 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1. :( Quote Link to comment Share on other sites More sharing options...
KillerBean Posted February 2, 2010 Report Share Posted February 2, 2010 Nu tad Tev ir jāmeklē kverijā kļūda, nevis formā. PS.: Nejauc SQL ar HTML un PHP.. Quote Link to comment Share on other sites More sharing options...
Nezinītis Posted February 2, 2010 Author Report Share Posted February 2, 2010 (edited) Ar kvērijiem viss ok, bet problēma bija ar pogu.. pogai bija jāizskatās šādi: <form name="input" action="theme.php" method="get" > <input type="hidden" name="id" value="<?=$_GET['id']?>"> <input type="submit" value="Spied te, lai atgrieztos pie tēmas " /> </form> Edited February 2, 2010 by Nezinītis Quote Link to comment Share on other sites More sharing options...
rATRIJS Posted February 2, 2010 Report Share Posted February 2, 2010 Nav jeegas tur taisiit formu - ir tak linki (<a>) <a href="theme.php?id=<?php echo $_GET['id']; ?>">Spied te!</a> Quote Link to comment Share on other sites More sharing options...
2easy Posted February 2, 2010 Report Share Posted February 2, 2010 (edited) ja vajag padot kādas vērtības līdzi formai, tad izmanto <input type="hidden" name="nosaukums" value="vertiba" /> tavā gadījumā tas varētu būt redirectId vai kkas tamlīdzīgs EDIT: oops, neizlasīju tavu otro postu. anyway formas labāk taču postot ;) Edited February 2, 2010 by 2easy Quote Link to comment Share on other sites More sharing options...
mounkuls Posted February 2, 2010 Report Share Posted February 2, 2010 (edited) Nu ja tur theme.php jau gaida $_GET un tas ir skaitlis, neredzu problēmu ar GET padot parastā linkā. Ja vajag lai noformēts kā button, lai tak ir GET ar līdz action linkā. Varbūt vēl kādā vietā vajadzēs parastu linku likt, ko tad, jāņem ar REQUEST jau būs. Edited February 2, 2010 by mounkuls Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.