-
Gave Reputation to Dani in FPDF Output Problem using below PHP code
It looks like you're outputting a binary string (a PDF, perhaps?) but you're not setting the proper HTTP header. What happens if, right above line 81 in the code above, … -
Created FPDF Output Problem using below PHP code
Please Help me. I am coding PHP using below code but out put is not perfect. i am also attach output picture below. <?php require_once 'core.php'; include_once("../fpdf182/fpdf.php"); $pdf = new … -
Began Watching FPDF Output Problem using below PHP code
Please Help me. I am coding PHP using below code but out put is not perfect. i am also attach output picture below. <?php require_once 'core.php'; include_once("../fpdf182/fpdf.php"); $pdf = new … -
Gave Reputation to rproffitt in PHP CHART.JS From Sql Database date range limitation Process
My initial thought is about line 12. If you want a certain date range I'd consider adding a WHERE date is in the range you desire. If fact, the first … -
Created PHP CHART.JS From Sql Database date range limitation Process
please help me. below chart.js works very well but here show all date data from database but i want only last fifteen days data to show. How can i show … -
Began Watching PHP CHART.JS From Sql Database date range limitation Process
please help me. below chart.js works very well but here show all date data from database but i want only last fifteen days data to show. How can i show … -
Replied To a Post in Mysql query for sum two table data by product wise
DEAR AndrisP, Thanks for your reply. i am already solve this problem using below code. SELECT I.product_id, COALESCE(S.sale, 0) AS sale, COALESCE(P.purchase, 0) AS purchase FROM Product I LEFT JOIN … -
Replied To a Post in Mysql query for sum two table data by product wise
Dear AndrisP sir if i use below code the sum of sale and purchase product wise perfect but No 5 product missing for no purchase only sale but i want … -
Gave Reputation to AndrisP in Mysql query for sum two table data by product wise
I recommend use `join` instead of `subquery` if possible because join works faster. I think you have another table e.g. `products` which contains all product id. Select `product_id` from products … -
Replied To a Post in Mysql query for sum two table data by product wise
MR Pritaeas provide below code its works but item 4 did't show in output because sale raw is empty. but i want all data show like output table product wise. … -
Gave Reputation to Dani in Mysql query for sum two table data by product wise
I’m on my phone now so I can’t search easily, but didn’t you just ask this question two days ago? -
Gave Reputation to Dani in Mysql query for sum two table data by product wise
I’m on my phone now so I can’t search easily, but didn’t you just ask this question two days ago? -
Gave Reputation to Dani in Mysql query for sum two table data by product wise
I’m on my phone now so I can’t search easily, but didn’t you just ask this question two days ago? -
Created Mysql query for sum two table data by product wise
Dear sir, Please help me about below query. here is two table sale and purchase. i want product wise result in output table like below picture. please help me  -
Began Watching Mysql query for sum two table data by product wise
Dear sir, Please help me about below query. here is two table sale and purchase. i want product wise result in output table like below picture. please help me  -
Gave Reputation to pritaeas in mysql query for sum two table data
Probably something like this: SELECT * FROM ( SELECT product_id, SUM(quantity) AS purchase FROM purchase GROUP BY product_id ) P JOIN ( SELECT product_id, SUM(quantity) AS sale FROM sale GROUP … -
Replied To a Post in mysql query for sum two table data
Dear sir please help me, here product id 4 is not entry to sale column but i want to show purchase column result as like below picture. sir please help … -
Gave Reputation to pritaeas in mysql query for sum two table data
Probably something like this: SELECT * FROM ( SELECT product_id, SUM(quantity) AS purchase FROM purchase GROUP BY product_id ) P JOIN ( SELECT product_id, SUM(quantity) AS sale FROM sale GROUP … -
Edited mysql query for sum two table data
please provide me sql query for below output sum query please help me  -
Created mysql query for sum two table data
please provide me sql query for below output sum query please help me  -
Began Watching mysql query for sum two table data
please provide me sql query for below output sum query please help me 
The End.