i have a text field where users can enter a string of 15 numbers only per line 50 lines max
i also need to filter out any duplicate values. so far i have this code
if(empty($_POST['text_field'])){$message = 'Please input values for the text_field.';}else{
$text_field = $_POST['text_field'] ;
$lines_unfiltered = array_slice(explode("\n", $text_field), 0, 50);
$lines = array_unique($lines_unfiltered);
print_r($lines);
exit;
but when i run it it with these numbers
5645646546545
2564545454544
5645646546545
it gives me all three lines and doesnt filter out the duplicate like it should
Array([0]=> 5645646546545 [1]=> 2564545454544 [2]=> 5645646546545)
any ideas?
array_map('trim', array_slice(explode("\n", $text_field), 0, 50))and see if that fixes the problem. – Jon Dec 12 '11 at 3:11