How to display the data once










1














This is the output i am getting:
output i am gettingExpected Output:This is my expected outputI 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










share|improve this question























  • 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















1














This is the output i am getting:
output i am gettingExpected Output:This is my expected outputI 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










share|improve this question























  • 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













1












1








1







This is the output i am getting:
output i am gettingExpected Output:This is my expected outputI 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










share|improve this question















This is the output i am getting:
output i am gettingExpected Output:This is my expected outputI 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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 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
















  • 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















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












1 Answer
1






active

oldest

votes


















0














Dhara, have you inspected the contents of $queryto 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.






share|improve this answer




















  • okey @Pete Reitz..
    – dhara
    Nov 12 at 5:40










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
);



);













draft saved

draft discarded


















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









0














Dhara, have you inspected the contents of $queryto 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.






share|improve this answer




















  • okey @Pete Reitz..
    – dhara
    Nov 12 at 5:40















0














Dhara, have you inspected the contents of $queryto 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.






share|improve this answer




















  • okey @Pete Reitz..
    – dhara
    Nov 12 at 5:40













0












0








0






Dhara, have you inspected the contents of $queryto 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.






share|improve this answer












Dhara, have you inspected the contents of $queryto 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.







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 10 at 15:07









Pete Reitz

513




513











  • 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




okey @Pete Reitz..
– dhara
Nov 12 at 5:40

















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

Edmonton

Crossroads (UK TV series)