Faks Posted October 10, 2010 Report Share Posted October 10, 2010 Labvakar Kungi Un Dāmas Tātad Esmu Atkal Ar Jautājumu ilgi meklēju visur un tomer neatradu tāpēc ceru ka saliekot prātus var atrisināt šo problemu ... Paskaidrojums Izmantojot šo kodu nekādigi nevaru noverst lai tukšā formas tabula netiktu nosūtita bet diemžel man iznāca pretējs effekts un tai skaitā ari "echo" teksts tiek izvaditīts visu laiku . Kods if((empty($text) == "") || strlen($text) < 1) { { echo "Lūdzu Aizpildat Aili"; } } Link to comment Share on other sites More sharing options...
Vilsol Posted October 10, 2010 Report Share Posted October 10, 2010 if((!empty($text) == "") || strlen($text) < 1) { { echo "Lūdzu Aizpildat Aili"; } } Link to comment Share on other sites More sharing options...
rATRIJS Posted October 10, 2010 Report Share Posted October 10, 2010 o_O http://uk.php.net/empty Link to comment Share on other sites More sharing options...
Faks Posted October 10, 2010 Author Report Share Posted October 10, 2010 if((!empty($text) == "") || strlen($text) < 1) { { echo "Lūdzu Aizpildat Aili"; } } ! noliegums neko neatrisinās šinī situacija .... Link to comment Share on other sites More sharing options...
marrtins Posted October 10, 2010 Report Share Posted October 10, 2010 Labs. function check_empty($text) { if(empty($text) || !empty($text) || $text || !$text || $text ^ $text || 1/0) check_empty(!!!!!$text); return never_ever; } // check_empty Link to comment Share on other sites More sharing options...
briedis Posted October 10, 2010 Report Share Posted October 10, 2010 labs vakara humoriņš, tagad varu iet gulēt mierīgu dvēseli :) Nez, ko lai piebilst, vienīgi kā jau rATRIJS minēja - RTFM :) Link to comment Share on other sites More sharing options...
Faks Posted October 11, 2010 Author Report Share Posted October 11, 2010 (edited) Labs. function check_empty($text) { if(empty($text) || !empty($text) || $text || !$text || $text ^ $text || 1/0) check_empty(!!!!!$text); return never_ever; } // check_empty labs tikai tāpēc ka viņs ir iestrēdzis bezgalīgajā cikla .... Edited October 11, 2010 by Faks Link to comment Share on other sites More sharing options...
php newbie Posted October 11, 2010 Report Share Posted October 11, 2010 (edited) no manuaļa Returns FALSE if var has a non-empty and non-zero value. The following things are considered to be empty: * "" (an empty string) * 0 (0 as an integer) * "0" (0 as a string) * NULL * FALSE * array() (an empty array) * var $var; (a variable declared, but without a value in a class) tātad if(empty($text)) { echo "Lūdzu Aizpildat Aili"; } Edited October 11, 2010 by php newbie Link to comment Share on other sites More sharing options...
Turecky Posted October 11, 2010 Report Share Posted October 11, 2010 Neredzu jēgu otrajai pārbaudei, jo ja rinda ir tukša kāpēc pārbaudīt tās garumu?! A ja rindā ir kaut kādi simboli, tad turpinam ar pārbaudēm., kā arī divreiz likt iekavās ar nav jēgas. Principā doma varētu būt tāda, ka vispirms pārbaudam vai tajā mainīgajā vispār kaut kas ir, tad pārbaudam pašus datus vai tie atbilst tiem datiem, ko gribam tur redzēt un tad jau viss pārējais. Link to comment Share on other sites More sharing options...
Faks Posted October 11, 2010 Author Report Share Posted October 11, 2010 kā saprotu neviens nesaprot ko es patiesi vēlos tad šeit ir video pat uztaisīt lai varētu saprast .... http://faksx.sytes.net/help/ Link to comment Share on other sites More sharing options...
php newbie Posted October 11, 2010 Report Share Posted October 11, 2010 a tu to pārbaudi ieliki pie inserta? vai tik izvadi paziņojumu ka lauks nav aizpildīts ? :) if(empty($text)) { echo "Lūdzu Aizpildat Aili"; } else { // insert data ... } Link to comment Share on other sites More sharing options...
Леший Posted October 11, 2010 Report Share Posted October 11, 2010 Tu kad raksti kodus, esi mēģinājis pats saprast, ko raksti? Mēģināšu paskaidrot: tavs kods sākumā pārbauda, vai ievādīta rinda ir garāka, ka 0 (nepārbaudot, vai forma vispār bija submitota), ja nav, tad kods izvada paziņojumu. Pēc tam, kods apstrādā formu, neveicot rindas pārbaudi, jo redz, pārbaude jau ir bijusi. Nezinu, kādu tu tur sertifikātu esi dabūjis, bet tas sertifikāts noteikti nav saistīts ar programmēšanu, un visdrizāk arī ne ar IT. Link to comment Share on other sites More sharing options...
Faks Posted October 11, 2010 Author Report Share Posted October 11, 2010 (edited) Tu kad raksti kodus, esi mēģinājis pats saprast, ko raksti? Mēģināšu paskaidrot: tavs kods sākumā pārbauda, vai ievādīta rinda ir garāka, ka 0 (nepārbaudot, vai forma vispār bija submitota), ja nav, tad kods izvada paziņojumu. Pēc tam, kods apstrādā formu, neveicot rindas pārbaudi, jo redz, pārbaude jau ir bijusi. Nezinu, kādu tu tur sertifikātu esi dabūjis, bet tas sertifikāts noteikti nav saistīts ar programmēšanu, un visdrizāk arī ne ar IT. diemžel tas sertifikāts ir bet kā sakās tas tāpat ka students pēc profesijas bez pieredzes ... es saprotu ko kods dara bet neizprotu ideju realizājai vai pāprotu . Ja kādam vajag dabuju ļoti labu varijantu Te lai lietojas labi ļoti žel ka te neviens to nespēja piemeklēt vai izpalīdzēt savādāk drusku esu vīlies :( . Edited October 12, 2010 by Faks Link to comment Share on other sites More sharing options...
Recommended Posts