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

Php says that an array is an ordered map. But how the values are ordered in an array?

1009


Binary tree question - Node has numeric data (int) The function takes depth as argument and sum all the value of the node of the depth. For instance, (0) depth 0 / \ 10 20 depth 1 / \ / \ 40 50 60 70 depth 2 so if you pass get_sum(2), you would return 220 which is 40+50+60+70 (sum of depth2) write the function.

1920


What are the differences between php3 and php4 and php5? What is the current stable version of php? What advance thing in php7?

996


What does the array operator '===' means?

971


Will react hooks replace redux?

914


Tell me how can we change the maximum size of the files to be uploaded?

928


Tell me what is the importance of "action" attribute in a html form?

1025


How to execute an sql query? How to fetch its result?

1045


What is the use of mysqli_real_escape_string() function?

864


What is x+ mode in fopen() used for?

971


How can we check the value of a given variable is alphanumeric?

940


What is var_dump?

963


How to know user has read the email-php?

881


What is the correct line to use within the php.ini file, to specify that 128mb would be the maximum amount of memory that a script may use?

937


What is mvc php?

888