dompdf library using codeigniter doesn't work hmtl and css
I am using dompdf library for downloading pdf format. the first created a pdf template in HTML format then a function used to call the dompdf library and viewing the function of download pdf .but it doesn't work CSS and HTML tags.below show the function of the controller
$this->load->library('Pdf');
$id=$this->uri->segment(3);
$data['title']='Invoice';
$data['invoice_view']= $this->Invoice_Model->get_purchaseorder_by_id($id);
$this->load->view('components/pdftemplate',$data);
$html = $this->output->get_output();
$dompdf=new DOMPDF();
$dompdf->load_html($html);
$dompdf->render();
$dompdf->stream("invoice.pdf");enter code here
then created html template
<div class="block">
<div class="row">
<div class="col-md-6">
<p>company Logo</p>
</div>
<div class="col-md-6" style="float:left;color:red;">
<p>Purchase Order</p>
</div>
</div>
<div class="app-heading app-heading-small">
<div class="title">
<h5><?= $title;?></h5>
</div>
</div>
<?php foreach($invoice_view as $inv):?>
<div class="row">
<div class="col-md-6">
<div class="app-widget-informer">
<div class="title">To:<?= $inv->client_company_name;?></div>
<div class="tinyintval"><?= $inv->address;?></div>
<div class="tinyintval"></div>
<div class="tinyintval">Phone:<?= $inv->phone;?></div>
<div class="tinyintval">Email:<?= $inv->email;?></div>
</div>
</div>
<div class="col-md-6">
<div class="app-widget-informer">
<div class="tinyintval">Po#:<?= $inv->invoice_id;?></div>
<div class="tinyintval">Po Date:<?= $inv->issue_date;?></div>
</div>
</div>
</div>
<table class="table table-bordered" >
<thead>
<th>slno </th>
<th> Description</th>
<th>Unit Price</th>
<th>Quantity</th>
<th>Cost</th>
<th>Tax %</th>
</thead>
<tbody>
<?php foreach($inv->tableinvoice as $tabin):?>
<tr >
<td>
<?= $tabin->id; ?>
</td>
<td>
<?= $tabin->description; ?>
</td>
<td>
<?= $tabin->quantity; ?>
</td>
<td>
<?= $tabin->unitprice; ?>
</td>
<td>
<?= $tabin->cost; ?>
</td>
<td>
<?= $tabin->tax; ?>
</td>
</tr>
<?php endforeach;?>
</tbody>
</table>
<?php endforeach;?>
</div>
but getting a text format doesn't work css and html styles.
php html5 pdf codeigniter-3 dompdf
add a comment |
I am using dompdf library for downloading pdf format. the first created a pdf template in HTML format then a function used to call the dompdf library and viewing the function of download pdf .but it doesn't work CSS and HTML tags.below show the function of the controller
$this->load->library('Pdf');
$id=$this->uri->segment(3);
$data['title']='Invoice';
$data['invoice_view']= $this->Invoice_Model->get_purchaseorder_by_id($id);
$this->load->view('components/pdftemplate',$data);
$html = $this->output->get_output();
$dompdf=new DOMPDF();
$dompdf->load_html($html);
$dompdf->render();
$dompdf->stream("invoice.pdf");enter code here
then created html template
<div class="block">
<div class="row">
<div class="col-md-6">
<p>company Logo</p>
</div>
<div class="col-md-6" style="float:left;color:red;">
<p>Purchase Order</p>
</div>
</div>
<div class="app-heading app-heading-small">
<div class="title">
<h5><?= $title;?></h5>
</div>
</div>
<?php foreach($invoice_view as $inv):?>
<div class="row">
<div class="col-md-6">
<div class="app-widget-informer">
<div class="title">To:<?= $inv->client_company_name;?></div>
<div class="tinyintval"><?= $inv->address;?></div>
<div class="tinyintval"></div>
<div class="tinyintval">Phone:<?= $inv->phone;?></div>
<div class="tinyintval">Email:<?= $inv->email;?></div>
</div>
</div>
<div class="col-md-6">
<div class="app-widget-informer">
<div class="tinyintval">Po#:<?= $inv->invoice_id;?></div>
<div class="tinyintval">Po Date:<?= $inv->issue_date;?></div>
</div>
</div>
</div>
<table class="table table-bordered" >
<thead>
<th>slno </th>
<th> Description</th>
<th>Unit Price</th>
<th>Quantity</th>
<th>Cost</th>
<th>Tax %</th>
</thead>
<tbody>
<?php foreach($inv->tableinvoice as $tabin):?>
<tr >
<td>
<?= $tabin->id; ?>
</td>
<td>
<?= $tabin->description; ?>
</td>
<td>
<?= $tabin->quantity; ?>
</td>
<td>
<?= $tabin->unitprice; ?>
</td>
<td>
<?= $tabin->cost; ?>
</td>
<td>
<?= $tabin->tax; ?>
</td>
</tr>
<?php endforeach;?>
</tbody>
</table>
<?php endforeach;?>
</div>
but getting a text format doesn't work css and html styles.
php html5 pdf codeigniter-3 dompdf
Remove all white space in CSS and HTML and try it, hope it works.
– NimeSh Patel
Jan 19 at 6:14
add a comment |
I am using dompdf library for downloading pdf format. the first created a pdf template in HTML format then a function used to call the dompdf library and viewing the function of download pdf .but it doesn't work CSS and HTML tags.below show the function of the controller
$this->load->library('Pdf');
$id=$this->uri->segment(3);
$data['title']='Invoice';
$data['invoice_view']= $this->Invoice_Model->get_purchaseorder_by_id($id);
$this->load->view('components/pdftemplate',$data);
$html = $this->output->get_output();
$dompdf=new DOMPDF();
$dompdf->load_html($html);
$dompdf->render();
$dompdf->stream("invoice.pdf");enter code here
then created html template
<div class="block">
<div class="row">
<div class="col-md-6">
<p>company Logo</p>
</div>
<div class="col-md-6" style="float:left;color:red;">
<p>Purchase Order</p>
</div>
</div>
<div class="app-heading app-heading-small">
<div class="title">
<h5><?= $title;?></h5>
</div>
</div>
<?php foreach($invoice_view as $inv):?>
<div class="row">
<div class="col-md-6">
<div class="app-widget-informer">
<div class="title">To:<?= $inv->client_company_name;?></div>
<div class="tinyintval"><?= $inv->address;?></div>
<div class="tinyintval"></div>
<div class="tinyintval">Phone:<?= $inv->phone;?></div>
<div class="tinyintval">Email:<?= $inv->email;?></div>
</div>
</div>
<div class="col-md-6">
<div class="app-widget-informer">
<div class="tinyintval">Po#:<?= $inv->invoice_id;?></div>
<div class="tinyintval">Po Date:<?= $inv->issue_date;?></div>
</div>
</div>
</div>
<table class="table table-bordered" >
<thead>
<th>slno </th>
<th> Description</th>
<th>Unit Price</th>
<th>Quantity</th>
<th>Cost</th>
<th>Tax %</th>
</thead>
<tbody>
<?php foreach($inv->tableinvoice as $tabin):?>
<tr >
<td>
<?= $tabin->id; ?>
</td>
<td>
<?= $tabin->description; ?>
</td>
<td>
<?= $tabin->quantity; ?>
</td>
<td>
<?= $tabin->unitprice; ?>
</td>
<td>
<?= $tabin->cost; ?>
</td>
<td>
<?= $tabin->tax; ?>
</td>
</tr>
<?php endforeach;?>
</tbody>
</table>
<?php endforeach;?>
</div>
but getting a text format doesn't work css and html styles.
php html5 pdf codeigniter-3 dompdf
I am using dompdf library for downloading pdf format. the first created a pdf template in HTML format then a function used to call the dompdf library and viewing the function of download pdf .but it doesn't work CSS and HTML tags.below show the function of the controller
$this->load->library('Pdf');
$id=$this->uri->segment(3);
$data['title']='Invoice';
$data['invoice_view']= $this->Invoice_Model->get_purchaseorder_by_id($id);
$this->load->view('components/pdftemplate',$data);
$html = $this->output->get_output();
$dompdf=new DOMPDF();
$dompdf->load_html($html);
$dompdf->render();
$dompdf->stream("invoice.pdf");enter code here
then created html template
<div class="block">
<div class="row">
<div class="col-md-6">
<p>company Logo</p>
</div>
<div class="col-md-6" style="float:left;color:red;">
<p>Purchase Order</p>
</div>
</div>
<div class="app-heading app-heading-small">
<div class="title">
<h5><?= $title;?></h5>
</div>
</div>
<?php foreach($invoice_view as $inv):?>
<div class="row">
<div class="col-md-6">
<div class="app-widget-informer">
<div class="title">To:<?= $inv->client_company_name;?></div>
<div class="tinyintval"><?= $inv->address;?></div>
<div class="tinyintval"></div>
<div class="tinyintval">Phone:<?= $inv->phone;?></div>
<div class="tinyintval">Email:<?= $inv->email;?></div>
</div>
</div>
<div class="col-md-6">
<div class="app-widget-informer">
<div class="tinyintval">Po#:<?= $inv->invoice_id;?></div>
<div class="tinyintval">Po Date:<?= $inv->issue_date;?></div>
</div>
</div>
</div>
<table class="table table-bordered" >
<thead>
<th>slno </th>
<th> Description</th>
<th>Unit Price</th>
<th>Quantity</th>
<th>Cost</th>
<th>Tax %</th>
</thead>
<tbody>
<?php foreach($inv->tableinvoice as $tabin):?>
<tr >
<td>
<?= $tabin->id; ?>
</td>
<td>
<?= $tabin->description; ?>
</td>
<td>
<?= $tabin->quantity; ?>
</td>
<td>
<?= $tabin->unitprice; ?>
</td>
<td>
<?= $tabin->cost; ?>
</td>
<td>
<?= $tabin->tax; ?>
</td>
</tr>
<?php endforeach;?>
</tbody>
</table>
<?php endforeach;?>
</div>
but getting a text format doesn't work css and html styles.
php html5 pdf codeigniter-3 dompdf
php html5 pdf codeigniter-3 dompdf
edited Jan 19 at 6:14
NimeSh Patel
516316
516316
asked Jan 19 at 6:07
Abdul RafiAbdul Rafi
145
145
Remove all white space in CSS and HTML and try it, hope it works.
– NimeSh Patel
Jan 19 at 6:14
add a comment |
Remove all white space in CSS and HTML and try it, hope it works.
– NimeSh Patel
Jan 19 at 6:14
Remove all white space in CSS and HTML and try it, hope it works.
– NimeSh Patel
Jan 19 at 6:14
Remove all white space in CSS and HTML and try it, hope it works.
– NimeSh Patel
Jan 19 at 6:14
add a comment |
0
active
oldest
votes
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%2f54264528%2fdompdf-library-using-codeigniter-doesnt-work-hmtl-and-css%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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.
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%2f54264528%2fdompdf-library-using-codeigniter-doesnt-work-hmtl-and-css%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
Remove all white space in CSS and HTML and try it, hope it works.
– NimeSh Patel
Jan 19 at 6:14