Jump to content

implode is broke


Monkuar

Recommended Posts

$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

Link to comment
https://forums.phpfreaks.com/topic/258232-implode-is-broke/
Share on other sites

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.

Link to comment
https://forums.phpfreaks.com/topic/258232-implode-is-broke/#findComment-1323689
Share on other sites

  Quote

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

Link to comment
https://forums.phpfreaks.com/topic/258232-implode-is-broke/#findComment-1323691
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.