...I put arrows rite before line 373
Parse error: syntax error, unexpected '<' in /home/content/07/9656607/html/artist_dashboard.php on line 373
</div>
</div>
<div id="sales">
<h4>Sales</h4><span class="liner"></span>
<div class="def-block widget">
<div class="widget-content">
<?php
$sq_song="SELECT * FROM `sales` WHERE `user` = '$artist_id' AND `download` = 'Y'";
$res_song=$db->select_data($sq_song);
if(count($res_song)==0);
<strong style="color: #666;">You have not made any sales yet.</strong>; // <-------------
<?php }
else{
?>
<table class="table_audio">
<tbody>
<thead style="border-bottom: 1px solid">
<th style="font-weight: bold;text-align: left">Song Title</th>
<th style="font-weight: bold;text-align: left">Artist Name</th>
<th style="font-weight: bold">Purchase Date</th>
</thead>
<?php
if(count($res_song)>0)
{
for($i=0;$i<count($res_song);$i++)
{
$song_id = $res_song[$i]['song'];
$artist=$res_song[$i]['artist'];
$sale_date = $res_song[$i]['saleCreated'];
$sales_dt=date('m/d/Y',strtotime($sale_date));