How to display the data once
This is the output i am getting:
Expected Output:I want to display S.no,Bill no,Bill date,partyname(this datas are present in purchase bill table)only once for a same bill no and product name,Qty,Amount(this datas are present on purchase item table) to be displayed according to the product name for the same bill no..My problem is Bill no,Bill date and partyname also printing multiple times for the bill no..Below i have attached my code..what changes have to be done on my code..please help me..
Controller Code:
$this->db->where('date >=', $newDate);
$this->db->where('date <=', $newDate2);
$this->db->select('*');
$this->db->from('purchaseitem');
$this->db->order_by("no", "asc");
$this->db->join('purchasebill', 'purchasebill.date = purchaseitem.billdate','left outer');
$this->db->join('parmaster','parmaster.Pcode = purchasebill.partyname','left outer');
$this->db->join('itemmaster','itemmaster.itcode = purchaseitem.Product_Code','left outer');
$query = $this->db->get()->result_array();
$data['query'] = $query;
View code:
<?php foreach ($query as $row): ?>
<tr>
<td><?=$rowcount;?></td>
<td><?=$row['billno'];?></td>
<td><?=$row['billdate'];?></td>
<td><?=$row['PName'];?></td>
<td><?=$row['itemname'];?></td>
<td><?=$row['Qty'];?></td>
<td><?=$row['amount'];?></td>
<?php $rowcount +=1?>
<br>
<?php endforeach ?>
</tr>
purchase item table structurei have attached my table structurepurchase bill table structure
php mysql codeigniter
add a comment |
This is the output i am getting:
Expected Output:I want to display S.no,Bill no,Bill date,partyname(this datas are present in purchase bill table)only once for a same bill no and product name,Qty,Amount(this datas are present on purchase item table) to be displayed according to the product name for the same bill no..My problem is Bill no,Bill date and partyname also printing multiple times for the bill no..Below i have attached my code..what changes have to be done on my code..please help me..
Controller Code:
$this->db->where('date >=', $newDate);
$this->db->where('date <=', $newDate2);
$this->db->select('*');
$this->db->from('purchaseitem');
$this->db->order_by("no", "asc");
$this->db->join('purchasebill', 'purchasebill.date = purchaseitem.billdate','left outer');
$this->db->join('parmaster','parmaster.Pcode = purchasebill.partyname','left outer');
$this->db->join('itemmaster','itemmaster.itcode = purchaseitem.Product_Code','left outer');
$query = $this->db->get()->result_array();
$data['query'] = $query;
View code:
<?php foreach ($query as $row): ?>
<tr>
<td><?=$rowcount;?></td>
<td><?=$row['billno'];?></td>
<td><?=$row['billdate'];?></td>
<td><?=$row['PName'];?></td>
<td><?=$row['itemname'];?></td>
<td><?=$row['Qty'];?></td>
<td><?=$row['amount'];?></td>
<?php $rowcount +=1?>
<br>
<?php endforeach ?>
</tr>
purchase item table structurei have attached my table structurepurchase bill table structure
php mysql codeigniter
Something here doesn't make sense. You appear to want each item to show up yet you don't want thepurchasebill
data to show more than once. I suggest you provide sample data and what output you expect.
– ryantxr
Nov 10 at 15:47
Check my edited post i just want to print bill date,partyname printed once item name and quantity are printed according to the entries in a bill no
– dhara
Nov 12 at 5:38
add a comment |
This is the output i am getting:
Expected Output:I want to display S.no,Bill no,Bill date,partyname(this datas are present in purchase bill table)only once for a same bill no and product name,Qty,Amount(this datas are present on purchase item table) to be displayed according to the product name for the same bill no..My problem is Bill no,Bill date and partyname also printing multiple times for the bill no..Below i have attached my code..what changes have to be done on my code..please help me..
Controller Code:
$this->db->where('date >=', $newDate);
$this->db->where('date <=', $newDate2);
$this->db->select('*');
$this->db->from('purchaseitem');
$this->db->order_by("no", "asc");
$this->db->join('purchasebill', 'purchasebill.date = purchaseitem.billdate','left outer');
$this->db->join('parmaster','parmaster.Pcode = purchasebill.partyname','left outer');
$this->db->join('itemmaster','itemmaster.itcode = purchaseitem.Product_Code','left outer');
$query = $this->db->get()->result_array();
$data['query'] = $query;
View code:
<?php foreach ($query as $row): ?>
<tr>
<td><?=$rowcount;?></td>
<td><?=$row['billno'];?></td>
<td><?=$row['billdate'];?></td>
<td><?=$row['PName'];?></td>
<td><?=$row['itemname'];?></td>
<td><?=$row['Qty'];?></td>
<td><?=$row['amount'];?></td>
<?php $rowcount +=1?>
<br>
<?php endforeach ?>
</tr>
purchase item table structurei have attached my table structurepurchase bill table structure
php mysql codeigniter
This is the output i am getting:
Expected Output:I want to display S.no,Bill no,Bill date,partyname(this datas are present in purchase bill table)only once for a same bill no and product name,Qty,Amount(this datas are present on purchase item table) to be displayed according to the product name for the same bill no..My problem is Bill no,Bill date and partyname also printing multiple times for the bill no..Below i have attached my code..what changes have to be done on my code..please help me..
Controller Code:
$this->db->where('date >=', $newDate);
$this->db->where('date <=', $newDate2);
$this->db->select('*');
$this->db->from('purchaseitem');
$this->db->order_by("no", "asc");
$this->db->join('purchasebill', 'purchasebill.date = purchaseitem.billdate','left outer');
$this->db->join('parmaster','parmaster.Pcode = purchasebill.partyname','left outer');
$this->db->join('itemmaster','itemmaster.itcode = purchaseitem.Product_Code','left outer');
$query = $this->db->get()->result_array();
$data['query'] = $query;
View code:
<?php foreach ($query as $row): ?>
<tr>
<td><?=$rowcount;?></td>
<td><?=$row['billno'];?></td>
<td><?=$row['billdate'];?></td>
<td><?=$row['PName'];?></td>
<td><?=$row['itemname'];?></td>
<td><?=$row['Qty'];?></td>
<td><?=$row['amount'];?></td>
<?php $rowcount +=1?>
<br>
<?php endforeach ?>
</tr>
purchase item table structurei have attached my table structurepurchase bill table structure
php mysql codeigniter
php mysql codeigniter
edited Nov 12 at 5:34
asked Nov 10 at 5:34
dhara
19914
19914
Something here doesn't make sense. You appear to want each item to show up yet you don't want thepurchasebill
data to show more than once. I suggest you provide sample data and what output you expect.
– ryantxr
Nov 10 at 15:47
Check my edited post i just want to print bill date,partyname printed once item name and quantity are printed according to the entries in a bill no
– dhara
Nov 12 at 5:38
add a comment |
Something here doesn't make sense. You appear to want each item to show up yet you don't want thepurchasebill
data to show more than once. I suggest you provide sample data and what output you expect.
– ryantxr
Nov 10 at 15:47
Check my edited post i just want to print bill date,partyname printed once item name and quantity are printed according to the entries in a bill no
– dhara
Nov 12 at 5:38
Something here doesn't make sense. You appear to want each item to show up yet you don't want the
purchasebill
data to show more than once. I suggest you provide sample data and what output you expect.– ryantxr
Nov 10 at 15:47
Something here doesn't make sense. You appear to want each item to show up yet you don't want the
purchasebill
data to show more than once. I suggest you provide sample data and what output you expect.– ryantxr
Nov 10 at 15:47
Check my edited post i just want to print bill date,partyname printed once item name and quantity are printed according to the entries in a bill no
– dhara
Nov 12 at 5:38
Check my edited post i just want to print bill date,partyname printed once item name and quantity are printed according to the entries in a bill no
– dhara
Nov 12 at 5:38
add a comment |
1 Answer
1
active
oldest
votes
Dhara, have you inspected the contents of $query
to ensure that the data looks like what you are expecting? Perhaps a temporary var_dump($query)
prior to printing your table would lend some insight.
okey @Pete Reitz..
– dhara
Nov 12 at 5:40
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53236283%2fhow-to-display-the-data-once%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Dhara, have you inspected the contents of $query
to ensure that the data looks like what you are expecting? Perhaps a temporary var_dump($query)
prior to printing your table would lend some insight.
okey @Pete Reitz..
– dhara
Nov 12 at 5:40
add a comment |
Dhara, have you inspected the contents of $query
to ensure that the data looks like what you are expecting? Perhaps a temporary var_dump($query)
prior to printing your table would lend some insight.
okey @Pete Reitz..
– dhara
Nov 12 at 5:40
add a comment |
Dhara, have you inspected the contents of $query
to ensure that the data looks like what you are expecting? Perhaps a temporary var_dump($query)
prior to printing your table would lend some insight.
Dhara, have you inspected the contents of $query
to ensure that the data looks like what you are expecting? Perhaps a temporary var_dump($query)
prior to printing your table would lend some insight.
answered Nov 10 at 15:07
Pete Reitz
513
513
okey @Pete Reitz..
– dhara
Nov 12 at 5:40
add a comment |
okey @Pete Reitz..
– dhara
Nov 12 at 5:40
okey @Pete Reitz..
– dhara
Nov 12 at 5:40
okey @Pete Reitz..
– dhara
Nov 12 at 5:40
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53236283%2fhow-to-display-the-data-once%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Something here doesn't make sense. You appear to want each item to show up yet you don't want the
purchasebill
data to show more than once. I suggest you provide sample data and what output you expect.– ryantxr
Nov 10 at 15:47
Check my edited post i just want to print bill date,partyname printed once item name and quantity are printed according to the entries in a bill no
– dhara
Nov 12 at 5:38