Clarky Posted February 12, 2007 Share Posted February 12, 2007 I'm getting: Parse error: parse error in /Users/Clarky/Sites/clubDKD/Sources/musicp.php on line 39 with this code: <?php if(!defined('SMF')) die('Hacking attempt...'); global $context,$mp3,$db_prefix; //Some important variables $mp3 = array(); $mp3['db'] = "mp3"; $mp3['dir'] = "modules/osplayer/music"; function in_arrayr($needle, $haystack) { //I'm gonna need this function later, it searches an array recursivley foreach($haystack as $v) { if($needle == $v) { return true; } elseif(is_array($v)) { if(in_arrayr($needle, $v) === true) { return true; } } } return false; } function musicp_buildDB($clean,$add) { //Builds the mp3 database from a mp3 source directory (used to refresh the database) global $mp3; //Load the Database $mp3DB = musicp_loadDB(); Quote Link to comment https://forums.phpfreaks.com/topic/38142-need-an-extra-set-of-eyes/ Share on other sites More sharing options...
ToonMariner Posted February 12, 2007 Share Posted February 12, 2007 if(in_arrayr($needle, $v) === true) no in_arrayr function - remove the 'r' Quote Link to comment https://forums.phpfreaks.com/topic/38142-need-an-extra-set-of-eyes/#findComment-182612 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.