I wont to make one table when member come to page that it say "hello (usernick)"
what to add in
starttable('80%');
echo '<tr>';
echo '<tr><td class="tableb" >';
echo " :: hello (usernick) ::<br>\n";
endtable();
?
thn for any helo
try<?php
starttable('80%');
echo '<tr>';
echo '<tr><td class="tableb" >';
echo " :: hello ';
echo USER_NAME;
echo ' ::<br />';
echo '</td>';
echo '</tr>';
endtable();
?>
i try how you say, and try to incude this
<?php
define('IN_COPPERMINE', true);
require('include/init.inc.php');
require('include/smilies.inc.php');
pageheader('Information');
starttable('80%');
echo '<tr>';
echo '<tr><td class="tableb" >';
echo " :: hello ';
echo USER_NAME;
echo ' ::<br />';
echo '</td>';
echo '</tr>';
endtable();
pagefooter();
?>
and no luck
Parse error: parse error, unexpected $ in /home/neeth/public_html/galerija/test.php on line 30
echo " :: hello ';
Should read
echo ' :: hello ';
thnx nibbler ;)