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' >&nbsp;<font
face='arial,verdana,helvetica'
color='#000000'>value1</font></td>";
echo "<td bgcolor='dfdfdf' >&nbsp;<font
face='arial,verdana,helvetica'
color='#000000'>value2</font></td>";
echo "<td bgcolor='dfdfdf' >&nbsp;<font
face='arial,verdana,helvetica'
color='#000000'>value3</font></td>";
echo "<td bgcolor='dfdfdf' >&nbsp;<font
face='arial,verdana,helvetica'
color='#000000'>value4</font></td>";
echo "<td bgcolor='dfdfdf'>&nbsp;<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


Please Help Members By Posting Answers For Below Questions

How do I end a php session?

584


How to read the entire file into a single string?

658


Is string php function?

667


What is the difference between explode() and split() functions?

595


What is the difference between associative array and indexed array?

597






In php, how to redirect from one page to another page?

594


What is a trait in php?

654


What is the best way to change the key without changing the value of a php array element?

640


Can we use get instead of post?

585


What is oops php?

606


What type of errors can be occurred in php?

655


Are php sessions secure?

616


What does nan stand for computer science?

619


What is a PHP accelerator?

674


In PHP, fgets() is used to read a file one line at a time. State Whether True or False?

703