Chapman Posted March 17, 2010 Report Share Posted March 17, 2010 piedodiet, ka ar šādu jautājumu jūs traucēju, bet man ir jautājums, kādas ir html input checkbox tipa true un false vertibas? Quote Link to comment Share on other sites More sharing options...
Aleksejs Posted March 17, 2010 Report Share Posted March 17, 2010 Ja mums ir checkbox: <input type="checkbox" name="keksis" value="20"> Tad, ja būs ieķeksēts, PHP pusē tiks saņemts mainīgais: $_POST['keksis'] vai $_GET['keksis'] ar vērtību 20 Ja nebūs ieķeksēts, tad PHP pusē vispār netiks saņemts mainīgais: $_POST[keksis'] vai $_GET['keksis'] Quote Link to comment Share on other sites More sharing options...
anonīms Posted March 17, 2010 Report Share Posted March 17, 2010 Ja baigi gribas bez value, tad atstājot tukšu varētu būt "on" / "off" Quote Link to comment Share on other sites More sharing options...
Chapman Posted March 17, 2010 Author Report Share Posted March 17, 2010 (edited) nu ir tā, ka man mssql datu bāzē ir vērtība 0, ja ir false, un 1 ja ir true, datu tips tinyint. un man vajag nolasot datus, lai būtu jau tie, kam vērtība 1, lai būtu ateksēti, bet tie, kam 0, lai nebūtu. Tāda tā štelle ;) varbūt vnk var kāds paspert ideju, kā man vnk izvadīt un pārbaudīt checkbox vērtību? Edited March 17, 2010 by Chapman Quote Link to comment Share on other sites More sharing options...
briedis Posted March 17, 2010 Report Share Posted March 17, 2010 Kāpēc piemēram, tu šādus jautājumus te vispār uzdod? "Kāda vērtība ir čekboksam" Varbūt vienkārši PAMĒĢĪNI?? Vai vismaz http://tinyurl.com/yhz69qu Quote Link to comment Share on other sites More sharing options...
werd Posted March 17, 2010 Report Share Posted March 17, 2010 <input type="checkbox" value="<?=$data['vertiba']?>" <?=$data['vertiba'] ? "checked='checked'":""?>/> Quote Link to comment Share on other sites More sharing options...
Chapman Posted March 17, 2010 Author Report Share Posted March 17, 2010 no pagaidām izskatās šādi: mssql_connect("$host", "$username", "$password")or die("Never pieslēgties Serverim"); mssql_select_db("SecKeyPrior")or die("Nevar pieslēgties Datu Bāzei"); $s_user = intval($_POST['users_list']); $user_select = "SELECT * FROM S_Users WHERE Id='".$s_user."'"; $user_select = mssql_query( $user_select ) or die(mssql_error()); $user_select = mssql_fetch_assoc($user_select); $selected_user = $user_select['Id']; .... <?php echo 'Kļūdu skaits: ' .$user_select['Error']. ' ' ; echo 'Bloķēts: <input type="checkbox" value="'.$user_select['Locked'].'" name="locked"> '; echo 'Novecojis: <input type="checkbox" value="'.$user_select['Expired'].'" name="Expired"> '; echo 'Admin: <input type="checkbox" checked="checked" value="'.$user_select['Is_Admin'].'" name="Is_Admin"> '; echo 'Online: <input type="checkbox" value="'.$user_select['Is_Connected'].'" name="Is_Connected"> '; ?> Quote Link to comment Share on other sites More sharing options...
Aleksejs Posted March 17, 2010 Report Share Posted March 17, 2010 Un stādā arī? Quote Link to comment Share on other sites More sharing options...
briedis Posted March 17, 2010 Report Share Posted March 17, 2010 (edited) Kaut kas baigi neloģisks tur izskatās.. Edited March 17, 2010 by briedis Quote Link to comment Share on other sites More sharing options...
Chapman Posted March 17, 2010 Author Report Share Posted March 17, 2010 a ko citu lietot ja ir 2 vērtības T/F ?? nestrādā... arī izvadīt checkbox vērtību nesanāk... echo $_POST['Is_Connected']; something wrong? Quote Link to comment Share on other sites More sharing options...
briedis Posted March 17, 2010 Report Share Posted March 17, 2010 (edited) a ko citu lietot ja ir 2 vērtības T/F ?? nestrādā... arī izvadīt checkbox vērtību nesanāk... echo $_POST['Is_Connected']; something wrong? Tev tur vispār forma ir? Čekboksus parasti lieto formās, lai varētu mainīt to vērtību, nevis lai tikai informatīvi parādītu ir/nav. Bet kā lai lietotājs saprot, ka čekboksis ir pie mainīgā - online, vai novecojis :D Tjipa, it kā tos varētu mainīt... Edited March 17, 2010 by briedis Quote Link to comment Share on other sites More sharing options...
rATRIJS Posted March 17, 2010 Report Share Posted March 17, 2010 Lai atziimeetu checkbox kaa iekjekseetu vajag pievienot atribuutu checked: <input type="checkbox" name="random" value="random" checked="checked" /> + briezha teiktais. 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.