Jump to content

How to fetch all data from database of a column


ankit.pandeyc012

Recommended Posts

<html>
<title>Micro Elite Brigade - Participated Events</title><LINK REL="SHORTCUT ICON" HREF="images/favicon.png"><?php
require_once('upper.php');
if($_COOKIE['LoginIdCookie']){
require_once('database.php');
require_once('LoginStatement.php');
$LoginId=$_COOKIE['LoginIdCookie'];
$query="select * from participation where LoginId='$LoginId'";
$result=mysqli_query($dbc,$query) or die ('Not Connected');
//echo "<div class='search_output_data'>
echo "<table border='0' cellspacing='0' cellpadding='0'>";
echo "<tr><th align='left' valign='top' width='100' height='20'>Event Title</th>
<th align='right' valign='top' width='250' height='30'>Date of Participation</th>
</tr>";
while($row=mysqli_fetch_array($result))
{

echo "
<tr><td colspan='4' align='left' valign='top' ><table align='left' border='0' cellspacing='0' cellpadding='0'><tr><td align='left' valign='top'  width='200' height='20'>".$row['Title']."</td> <td width='50'> </td> <td align='left' valign='top' width='130'>".$row['Date']."</td> </tr></table>
</td></tr>";
}
echo "</table>";}
else{ echo 'Sorry, You must have to login.';}
require_once('lower.php');

?>

 

 

HI friends.....

I have a table named events in which I have a "Title" column.

When I print the value of Title column, it not displayed not more than 40 characters....

Where is the problem ???

Anyone??????

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.