Jump to content

[Resolved/Thank You!!!]: parse error, unexpected T_VARIABLE


ridiculous

Recommended Posts

[color=blue]I've been trying to find out the cause of this error and don't have a clue. Its probably quite simple for someone more experience to seek and destroy.[/color]




------------------------------------------------------
<code>

function get_job_details_table($title,$location,$date)

{
$conn = db_connect();

$jobdetails = mysql_query("SELECT title, description, required
FROM jobs WHERE
title='$title' and
location='$location' and
date='$date'")


[color=green]$numofrows = mysql_num_rows($jobdetails);    ///////<-----the error references this line. [/color]
echo "<div id='detailsdiv'>";
echo "<table width='493 px' height= '400 px' align = 'center' border='1' cellpadding='3' cellspacing='3'>";


for($i = 0; $i < $numofrows; $i++) {
 
    $row = mysql_fetch_array($jobdetails); //get a row from our result set
    if($i % 2) { //this means if there is a remainder


echo "<tr bgcolor='#ddd8dc'>";
   
} else {

echo "<tr bgcolor='#feaae9'>";
    }
   
 
   
echo <<HTML
<td align=left>{$row['title']}</td>
<td align=left>{$row['description']}</td>
<td align=center>{$row['required']}</td>
  HTML;

    echo "</tr>";
}



echo "</TABLE>";
echo "</div>";
}

</code>
-------------------------------------------------------------

Any help on this would be killer. Also, if its simple...I sure would like to know how went about solving the problem.

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.