reiniger Posted March 4, 2013 Report Share Posted March 4, 2013 (edited) Sveiki. Esmu izmēģinājies dažādi, bet vairs nav ideju kā vēl pamēģināt. Mana tabula weigth : decimal(20,6) Apgraizīju līdz tikai vienai vērtībai. Un nu rakstu precīzu Query bez mainīgiem. INSERT INTO tabula (`weight`) VALUES ('21.523200') Šis insert ar mysql_query() pievieno ierakstu, bet weight parametrs paliek pa nullēm. Šo pašu ierakstot PHPMyAdmin, viss izpildās kā vajag. Kur varētu būt problēma? Edited March 4, 2013 by reiniger Quote Link to comment Share on other sites More sharing options...
daGrevis Posted March 4, 2013 Report Share Posted March 4, 2013 Decimālam gadījumā nevajag pēdiņas? Quote Link to comment Share on other sites More sharing options...
reiniger Posted March 4, 2013 Author Report Share Posted March 4, 2013 (edited) Atklāju interesantu lietu $sql = "INSERT INTO table (`weight`) VALUES ('{$weight}')"; mysql_query($sql); // saglabā svaru if (mysql_query($sql)) { // nesaglabā svaru ... } Pirmais query pieglabā visu kā vajag, bet ja izpildāmā darbība ir iekš if (mysql_query($sql)), tad nepievieno manus decimālos skaitļus. Edited March 4, 2013 by reiniger Quote Link to comment Share on other sites More sharing options...
reiniger Posted March 4, 2013 Author Report Share Posted March 4, 2013 Tāds LOL esmu. Viss kārtībā tālāk kodā pats UPDATE taisu weight parametram un tur arī pārglabāju svarus uz null. Ritīgs bumbieris... 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.