යාලුවනේ මම php වලින් comment box එකක් හැදුවා එත් සිංහල පෙන්න මේ විදිහට .
English නම් අවුලක් නැතුව පෙනවා.. අනේ මට කවුරැ හරි කියලා දෙන්න කෝ........
ඔන්න code එක..
English නම් අවුලක් නැතුව පෙනවා.. අනේ මට කවුරැ හරි කියලා දෙන්න කෝ........
ඔන්න code එක..
HTML:
<div class="" style="margin-left:40px; margin-top:40px; margin-right:40px;">
<?php
$username = "lanka_com";
$password = "147147";
$hostname = "localhost";
$con=mysql_connect($hostname,$username,$password) ;
$select = mysql_select_db("lanka_comment", $con);
$result = mysql_query("select id,name,comment FROM comment");
while ($row = mysql_fetch_array($result)) {
?>
<div class='commentfullbox'>
<div class='commentnametype'>
<?php
echo "".$row['name'];
?>
</div>
<div class='commentname2'>
<?php
echo "".$row['comment'];
?>
</div>
</div>
<br />
<br />
<?php
}
?>
</div>
