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
Php says that an array is an ordered map. But how the values are ordered in an array?
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.
What are the differences between php3 and php4 and php5? What is the current stable version of php? What advance thing in php7?
What does the array operator '===' means?
Will react hooks replace redux?
Tell me how can we change the maximum size of the files to be uploaded?
Tell me what is the importance of "action" attribute in a html form?
How to execute an sql query? How to fetch its result?
What is the use of mysqli_real_escape_string() function?
What is x+ mode in fopen() used for?
How can we check the value of a given variable is alphanumeric?
What is var_dump?
How to know user has read the email-php?
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?
What is mvc php?