Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How to get tabels from database in php andd display it in
the table form using codelgniter?
plz help me

Answer Posted / vivek soni

//HTML coding
<html>
<head>
<title>Table</title>
</head>
<body>
<div><?php include("table.php");?></div>
</body>
</html>

//include table.php contain....
<?php
include("inc_connection.php");
$sql="select * from tablename";
$rs=mysql_query($sql);
echo "<table border=1 width='100%'> ";
echo "<tr><td colspan='2' align='center'>Student
Name</td><td >phone No</td></tr>";

while($row=mysql_fetch_assoc($rs))
{
echo "<tr><td align='right'>".$row['fname']."</td><td
align='left'>".$row['lname']."</td><td>".$row['phn']."</td></tr>";
}
echo "</table>";
?>

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a program to display reverse of any number?

900


Tell me how to set a page as a home page in a php based site?

923


What is substr() in php? And how it is used?

1036


Is age an interval or ratio?

962


How do you pass a variable by value?

1054


Tell me what library is used for pdf in php?

1000


What are sql injections, how do you prevent them and what are the best practices?

1055


How can image properties be retrieved in php?

989


How do you display the output directly to the browser?

916


What is php static function?

1027


What is a class in php programing?

2563


What is use of isset function in php?

1038


What is is_null() in php?

1053


What is the main difference between php 4 and php 5?

971


Explain type casting and type juggling.

1023