How to get tabels from database in php andd display it in
the table form using codelgniter?
plz help me
Answer Posted / amit srivastava
require "config.php"; //for connection with database
$query2=" SELECT * FROM tablename";
$result2=mysql_query($query2);
echo mysql_error();
$nume=mysql_num_rows($result2);
$bgcolor="#f1f1f1";
echo "<TABLE width=50% align=center cellpadding=2
cellspacing=2> <tr>";
echo "<td bgcolor='dfdfdf' > <font
face='arial,verdana,helvetica'
color='#000000'>value1</font></td>";
echo "<td bgcolor='dfdfdf' > <font
face='arial,verdana,helvetica'
color='#000000'>value2</font></td>";
echo "<td bgcolor='dfdfdf' > <font
face='arial,verdana,helvetica'
color='#000000'>value3</font></td>";
echo "<td bgcolor='dfdfdf' > <font
face='arial,verdana,helvetica'
color='#000000'>value4</font></td>";
echo "<td bgcolor='dfdfdf'> <font
face='arial,verdana,helvetica'
color='#000000'>value5</font></td></tr>";
| Is This Answer Correct ? | 4 Yes | 5 No |
Post New Answer View All Answers
The left association operator % is used in PHP for?
Why php is used with mysql?
What is php limit?
What is the method to execute a php script from the command line?
What is regex in html?
Explain what is the use of "echo" in php?
Is json a string php?
How do you pass a variable by value in php?
How many types of inheritances used in php and how we achieve it.
Tell me what is the main difference between php 4 and php 5?
Tell me in php, objects are they passed by value or by reference?
What is data abstraction in php?
What are the advantages of triggers in php?
What are php magic methods?
What does $globals mean?