vote up -5 vote down star

I have a huge table to put in the while loop, but i'm finding it difficult to concatenate it. How can I add multilines with more ?

<?php
$dbhost = 'xxxx';
$dbuser = 'xxxx';
$dbpass = 'xxxx';
$dbname = 'xxxx';

$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die ('Error connecting to mysql');
mysql_select_db($dbname, $conn);

$result = mysql_query("SELECT * FROM table", $conn);

while ($row = mysql_fetch_array($result)) 
{
    echo '<tr align="center"><td width='200'>' . htmlspecialchars($row['Picturedata']) . '</td>';
    echo '<td width="700"><h1>' . htmlspecialchars($row['name'] . '</td>' ;    
}

?>

I get syntax error, unexpected ';'

flag

youve missed a ) off this time – SocialAddict Oct 16 at 23:34
you also have an open tag for a header and no close tag – SocialAddict Oct 16 at 23:35
1  
Also missing a </tr> – Scott S. Oct 16 at 23:37

3 Answers

vote up 4 vote down check

In the posted code this line is missing a closing parentheses after ['name']:

echo "<td width='700'><h1>" . htmlspecialchars($row['name'] . "</td>" ;

It should be

echo "<td width='700'><h1>" . htmlspecialchars($row['name']) . "</td>" ;
link|flag
ooops! thanks for helping – Joe Oct 16 at 23:37
vote up 1 vote down

Update: You are missing a ')' on your second echo in the while loop.

The code you posted looks entirely valid to me. Maybe there is an issue or missing semicolon elsewhere in your file?

link|flag
1  
I agree the problem is probably further up in the code, and it's probably a missing ' or " – Unkwntech Oct 16 at 23:20
No, it says that there is an unexpected ';' in the second echo line :/ – Joe Oct 16 at 23:24
@Joe Post the entire file so we can take a look. – Scott S. Oct 16 at 23:26
Posted the code – Joe Oct 16 at 23:31
ooooops.. Thanks for your help – Joe Oct 16 at 23:35
vote up 0 vote down

Note that echo doesn't actually add a new line to the output. If you want a new line in the HTML output (though it won't be visible in the browser due to the way HTML treats new lines) then you either do something like

echo '<td> blah </td>
<td> blah </td>
';

or you can use \n in a double-quoted string:

echo "<td> blah </td>\n<td> blah </td>\n";

or

echo "<td> blah </td>\n";
echo "<td> blah </td>\n";
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.