anonīms Posted May 11, 2008 Report Share Posted May 11, 2008 (edited) elseif(isset($_GET['page']) && $_GET['page'] == 'results' and isset($_GET['info'])) Kādēļ šī daļa nestrādā? ($_GET['info']) vietā būs noteikts skaitlis (id) Rezultātam vajadzētu būt šādam: ?page=results&info=12 Edited May 11, 2008 by anonīms Link to comment Share on other sites More sharing options...
cucumber Posted May 11, 2008 Report Share Posted May 11, 2008 and pret && nomaini Link to comment Share on other sites More sharing options...
anonīms Posted May 11, 2008 Author Report Share Posted May 11, 2008 (edited) Tāks, lieta tāda, ka izmantoju jau vienā vietā jau results if(isset($_GET['page']) && $_GET['page'] == 'results) { .. } elseif(isset($_GET ) && $_GET == 'results' and $_GET[info]) { .. } nomainot elseif'am get page, uz piemēram $_GET['v'], tad viss strādā. Kas varētu būt par iemeslu? Strādā! Samainiju vietām abus ifus Edited May 11, 2008 by anonīms Link to comment Share on other sites More sharing options...
cucumber Posted May 11, 2008 Report Share Posted May 11, 2008 == 'results) te ir kluda trukst ' un izlasi ari manu iepriekshejo postu, nevis nodarbojies ar kombinatoriku Link to comment Share on other sites More sharing options...
anonīms Posted May 11, 2008 Author Report Share Posted May 11, 2008 ' nebija kļūda (kad rakstju te forumā, tad nekopēju no faila, bet pats uzrakstiju. if(isset($_GET['page']) && $_GET['page'] == 'results' && isset($_GET['cw'])) tāpat negāja. Link to comment Share on other sites More sharing options...
cucumber Posted May 11, 2008 Report Share Posted May 11, 2008 ja tev ir $_GET['page'] == 'results', tad nav jegas no shi isset($_GET['page']), ja neiet pamegini ar var_dump() apskatities kads ir katrs mainigais, kas piedalas if'a Link to comment Share on other sites More sharing options...
marrtins Posted May 11, 2008 Report Share Posted May 11, 2008 ieslēdz error_reporting(E_ALL) un redzēsi jēgu. if(isset($_GET['page']) && ($_GET['page'] == 'results') && isset($_GET['cw'])) Link to comment Share on other sites More sharing options...
kasisppr Posted May 12, 2008 Report Share Posted May 12, 2008 Pieņemu, ka visas pēdiņas tiešām esi salicis, tāpēc tās kļūdas neapspriedīšu. if(isset($_GET['page']) && $_GET['page'] == 'results) {..} elseif(isset($_GET ) && $_GET == 'results' and $_GET[info]){..} Neredzu iemeslu, lai tev vispār kaut reizi izpildītos elseif nosacījums, ja $_GET['page'] = 'result' un pat ir kaut kāda $_GET['info'] vērtība. Nostrādās IF nosacījums un viss. Vai nu maini elseif ar if vietām, vai būvē citu loģiku. Link to comment Share on other sites More sharing options...
anonīms Posted May 12, 2008 Author Report Share Posted May 12, 2008 http://paste.php.lv/7335?lang=php Lieta tāda, ka man visu laiku prasa atkal paroli ievadīt, zinu 100%, ka kaut kas nav kārtībā ar ifiem, kad dodas Add_new. dubultIF'i nav mana stiprā puse. Lūdzu palīdizet.. Link to comment Share on other sites More sharing options...
Recommended Posts