Jump to content

Need an extra set of eyes


Clarky

Recommended Posts

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();

Link to comment
https://forums.phpfreaks.com/topic/38142-need-an-extra-set-of-eyes/
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.