Jump to content

[SOLVED] Displaying HTML code problem


Larry101

Recommended Posts

Hi everyone

 

I just getting back to PHP after a break but have forgot how to build a HTML table row. Here is the part of the code that builds up rows for a html table...

 


while($rows = mysql_fetch_array($qry)){
        
           $table .= "
           <tr>
					<td><input type=\"checkbox\" name=\"C1\" value=\"ON\"></td>
					<td width=\"87\">$rows['ref']</td>
					<td width=\"178\">$rows['transactionReferenceNumber']</td>
					<td>$rows['totalAmountReceived']</td>
					<td>$rows['myItemQuantity']</td>
					<td>$rows['flag_1']</td>
					<td>$rows['flag2']</td>
				</tr>

           ";

				}

 

This causes an error as you might expect. Please tell me the best way to place the html code into $table

 

 

Link to comment
https://forums.phpfreaks.com/topic/235080-solved-displaying-html-code-problem/
Share on other sites

Thanks guys...

 

The error was "Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/xxxx/public_html/TestArea2/admin/ad_tokens.php on line 26"

 

but when i used curly brackets it worked with no error.  :D Thanks for the help.

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.