Jump to content

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

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.