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
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
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.

 

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.