-.- my last thread wasent answered -.- (i posted it on ohte sites, ahd about 40 replies in an hour -.-)
anyway... i have susfully created a cd-key validator...
at the moment it checks in a file to see if the key is there
PHP Code:
$file = file_get_contents("keys.1");
$savedcodes = explode(',', $file);
$key = "$A-$B-$C-$D-$E-$F";
if(array_search($key, $savedcodes) !== false)
the file looks liek this
i want it to look like this
now, my only problem, is that it has to all be on one line, and i need them all to be on seperate lines.... because of tagging, for when a key is used...
i have tryed \n adding an enter in brackets, and non of this works, please help me