Jump to content

.= ????


ecabrera

Recommended Posts

what does this mean .=

 

for example is say this somewhere and i try it here and it work why? and if i remove it it doesn't work

 

<?php
require "scripts/connect.php";

$query = mysql_query("SELECT * FROM page");
while ($rows = mysql_fetch_assoc($query)){

$pageid = $rows['id'];
$pagetitle = $rows['pagetitle'];
$pagebody = $rows['pagebody'];

$tableOutput .= "<tr>";
$tableOutput .= "<td align='center'><strong>$pagetitle</strong></td>";
$tableOutput .= "</tr>";

}
mysql_close();
?>

Link to comment
https://forums.phpfreaks.com/topic/257401--/
Share on other sites

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.