Monkuar Posted March 4, 2012 Share Posted March 4, 2012 $birthday = implode(",",$_POST['BirthDay']); $bday = array( "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31" ); echo $birthday['0']; exit; //var_dump($colorarrays); if (!in_array($birthday['0'], $bday)) { message("Please select a Correct Birthday, or u trying to hack"); } Okay, if I enter "55325" for my first birthday POST, it only shows "5" and thus making the in_array not work correctly how can i implode my data correctly ty Quote Link to comment https://forums.phpfreaks.com/topic/258232-implode-is-broke/ Share on other sites More sharing options...
Pikachu2000 Posted March 4, 2012 Share Posted March 4, 2012 implode() is not "broke", but you haven't provided enough information to answer the question. Post the form and any other relevant code that handles that part of the form. The <pre>-formatted output from var_dump($_POST); would also help. Quote Link to comment https://forums.phpfreaks.com/topic/258232-implode-is-broke/#findComment-1323689 Share on other sites More sharing options...
Monkuar Posted March 4, 2012 Author Share Posted March 4, 2012 implode() is not "broke", but you haven't provided enough information to answer the question. Post the form and any other relevant code that handles that part of the form. The <pre>-formatted output from var_dump($_POST); would also help. hey, my birthday is imploded twice, using birthday[] and then imploding it again is what i think is causing it sorry, topic solved hahah Quote Link to comment https://forums.phpfreaks.com/topic/258232-implode-is-broke/#findComment-1323691 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.