"><?php 
    echo htmlentities(ucwords(strtolower($i['artist'])));
    ?>
</a></td>
		<td><a href="<?php 
    echo get_mp3_src($i['path']);
    ?>
" class="track" title="<?php 
    echo htmlentities(ucwords(strtolower($i['artist'] . ' - ' . $i['title'])));
    ?>
"><?php 
    echo htmlentities(ucwords(strtolower($i['title'])));
    ?>
</a></td>
		<td><a href="<?php 
    echo get_mp3_src($i['path']);
    ?>
" class="track"  title="<?php 
    echo htmlentities(ucwords(strtolower($i['artist'] . ' - ' . $i['title'])));
    ?>
"><i class="glyphicon glyphicon-play-circle"></i> Play</a></td>
	<?php 
    if (is_logged() and $i['username'] === $_SESSION['username']) {
        ?>
		<td><a class="ajax" title="<?php 
        echo ucfirst($i['username']);
        ?>
" href="<?php 
        echo $config['base_url'];
        ?>
dashboard">You</a></td>
<center>
	<h1>PAGE NOT FOUND ERROR</h1>
	<p><img width="600" height="200" src="<?php 
echo $config['base_url'];
?>
assets/wait.gif"></p>
	<a href="<?php 
echo $config['base_url'];
?>
"><h1>BACK TO HOME!</h1></a>
	</div>
	<a href="<?php 
echo get_mp3_src($config['upload_path'] . '404.mp3');
?>
" style="display:none" class="track track-default">404</a>

</center>
<div class="form-group">
  <label for="artist">Artist:</label>
  <input type="text" class="form-control" id="artist" name="artist" value="<?php 
echo $row['artist'];
?>
" required>
</div>

<div class="form-group">
  <label for="url">Url:</label>
  <input type="text" class="form-control" id="url" name="url" value="<?php 
echo $row['path'];
?>
" required>
</div>

<div class="form-group">
   <button type="submit" name="update" class="btn btn-success btn-block" >Update</button>
</div>
<input type="hidden" name="id" value="<?php 
echo $row['id'];
?>
" />
</form>
<a href="<?php 
echo get_mp3_src($row['path']);
?>
" style="display:none" class="track track-default"><?php 
echo $row['title'];
?>
</a>