Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~87 People Reached
Favorite Forums
Favorite Tags
php x 1
Member Avatar for arif.ctg.ns

whenever I am running this code <?php $db=mysql_connect('localhost','root',''); mysql_select_db('moviesite',$db); $query= 'SELECT * FROM movie'; $result=mysql_query($query,$db) or die(mysql_error($db)); while ($row=mysql_fetch_assoc($result)) echo '<tr>'; { foreach ($row as $value) { echo $value; } } ?> everything ok, properoutput........... but after that I typed this code of the output in table <?php $db=mysql_connect('localhost','root',''); mysql_select_db('moviesite',$db); …

Member Avatar for pritaeas
0
87