• Login
  • Register
  • Zoek
This Thread
  • Everywhere
  • This Thread
  • This Forum
  • Articles
  • Pages
  • Forum
  • Filebase Entry
  • More Options

ICTscripters

Dé plek voor IT

Dé plek voor IT

Login

Geavanceerde opties
  1. Home
  2. Forum
    1. Alle berichten
    2. Recente activiteiten
  3. ICT Nieuws
  4. Blog
  5. Marktplaats
    1. Werk
    2. Advertenties
    3. Domeinnamen
    4. Websites
    5. Design & lay-outs
    6. Scripts
    7. Overige
  6. Design
  7. Leden
    1. Actieve bezoekers
    2. Team
    3. Leden zoeken
  8. Downloads
  9. Goedkope domeinnamen
  1. Home
  2. Forum
    1. Alle berichten
    2. Recente activiteiten
  3. ICT Nieuws
  4. Blog
  5. Marktplaats
    1. Werk
    2. Advertenties
    3. Domeinnamen
    4. Websites
    5. Design & lay-outs
    6. Scripts
    7. Overige
  6. Design
  7. Leden
    1. Actieve bezoekers
    2. Team
    3. Leden zoeken
  8. Downloads
  9. Goedkope domeinnamen
  1. Home
  2. Forum
    1. Alle berichten
    2. Recente activiteiten
  3. ICT Nieuws
  4. Blog
  5. Marktplaats
    1. Werk
    2. Advertenties
    3. Domeinnamen
    4. Websites
    5. Design & lay-outs
    6. Scripts
    7. Overige
  6. Design
  7. Leden
    1. Actieve bezoekers
    2. Team
    3. Leden zoeken
  8. Downloads
  9. Goedkope domeinnamen
  1. Dé plek voor IT - ICTscripters
  2. Forum
  3. Scripting & programmeren
  4. PHP + SQL

Forum

  • Kweekrijk - van stekje tot Imperium

    Lijno 10 september 2026 om 21:18
  • 🚀 WE ZOEKEN TESTERS! 🚀

    Lijno 10 september 2026 om 21:08
  • Crimora.nl

    Jeffrey.Hoekman 8 september 2026 om 18:49
  • Programmeren geocht die samen met mij maffiaskrill.com

    Dennii 2 september 2026 om 11:15
  • Gezocht mafiasnextkill

    mrsenati 1 september 2026 om 17:38
  • nieuwe game

    tigermaffia 27 augustus 2026 om 18:02
  • Ik heb probeem in mijn dashboard.php

    Syntax 20 augustus 2026 om 09:59
  • Fallen Kingdom Game

    Syntax 18 augustus 2026 om 08:23

Marktplaats

  • Ik verkoop maffiaskrill.com voor 30 eur0

    Jeffrey.Hoekman 9 september 2026 om 11:55
  • Straatbaas.eu – complete Nederlandstalige en Engelstalige online maffia-RPG

    Syntax 25 augustus 2026 om 14:41
  • 303 Nieuwe Domeinnamen Juli 2026

    shiga 1 augustus 2026 om 13:56

euro symbool in pdf

  • baldex
  • 24 oktober 2011 om 20:18
  • baldex
    Chocolate man
    Berichten
    517
    • 24 oktober 2011 om 20:18
    • #1

    Beste

    de pdf word automatisch gemaakt door een php bestand maar krijg maar niet de euro symbool er in weet iemand een oplossing

    PHP
    <?php
    
    
    
    
    
    
    include('plugins/fpdf/fpdf.php');
    
    
    class PDF extends FPDF
    {
    
    
    
    
        function invoice($invoice)
        {
            //TODO: authorized admin or owner...owner function
            global $CONFIG;
            setlocale(LC_MONETARY, 'en_EN');
    
    
            //all date into simple variables
            $company_details[0] = (isset($CONFIG['company']['address'])) ? $CONFIG['company']['address'] : '';
            $company_details[1] = (isset($CONFIG['company']['address_2'])) ? $CONFIG['company']['address_2'] : '';
            $company_details[2] = (isset($CONFIG['company']['email'])) ? $CONFIG['company']['email'] : '';
            $company_details[3] = (isset($CONFIG['company']['phone'])) ? $CONFIG['company']['phone'] : '';
            $company_details[4] = (isset($CONFIG['company']['bank'])) ? $CONFIG['company']['bank'] : '';
    		$company_details[5] = (isset($CONFIG['company']['bank2'])) ? $CONFIG['company']['bank2'] : '';
    		$company_details[6] = (isset($CONFIG['company']['bank3'])) ? $CONFIG['company']['bank3'] : '';
    
    
            $client = $invoice['client'];
            $clientname = (!empty($client['name'])) ? $client['name'] : '';
            $clientaddress1 = (!empty($client['address_line_1'])) ? $client['address_line_1'] : '';
            $clientaddress2 = (!empty($client['address_line_2'])) ? $client['address_line_2'] : '';
            $clientcontactemail = (!empty($client['contact_email'])) ? $client['contact_email'] : '';
            $clientcontactphone = (!empty($client['contact_phone'])) ? $client['contact_phone'] : '';
    
    
            $invoicenumber = $invoice['main']['invoice_number'];
            $invoicedate = ($invoice['main']['date_of_issue'] != 0) ? date('M j, Y', $invoice['main']['date_of_issue']) : '';
            $invoicestatus = InvoicesController::invoice_status($invoice['main']['balance'], $invoice['main']['due_date'], is_array($invoice['line_items']));
            $invoiceduedate = ($invoice['main']['due_date'] != 0) ? date('M j, Y', $invoice['main']['due_date']) : '';
    
    
    
    
            $this->AddPage();
            $this->SetTextColor(119, 119, 119);
            $this->SetFont('arial', '', 8);
    
    
    
    
            $this->Image($CONFIG['company']['logo'], 12, 12, 55);
    
    
            $y = getimagesize($CONFIG['company']['logo']);
            $y_start = $y[1] - 35;
            $num_details = 0;
            for ($i = 0; $i < count($company_details); $i++)
            {
                if (!empty($company_details[$i]))
                {
                    $y = $y_start + ($num_details * 5);
                    $this->Text(12, $y, $company_details[$i]);
                    $num_details++;
                }
    
    
            }
    
    
            $this->SetFont('arial', '', 9);
            $this->Text(12, 65, "To");
            $this->SetFont('arial', 'B', 9);
            $this->SetTextColor(0, 0, 0);
            $this->Text(12, 70, $clientname);
            $this->SetTextColor(119, 119, 119);
            $this->SetFont('arial', '', 8);
            $this->Text(12, 75, $clientcontactemail);
            $this->Text(12, 79, $clientcontactphone);
    
    
            $c = 170;
            $this->SetXY(80, 62);
            $this->SetFont('arial', '', 9);
            $this->SetTextColor($c, $c, $c);
            $this->Cell(20, 5, 'Invoice No.', 0, 0, 'R');
            $this->SetTextColor(0, 0, 0);
            $this->Cell(20, 5, $invoicenumber, 0, 2, 'L');
            $this->SetTextColor($c, $c, $c);
            $this->SetXY(80, 68);
            $this->Cell(20, 5, 'Invoice Date', 0, 0, 'R');
            $this->SetTextColor(0, 0, 0);
            $this->Cell(20, 5, $invoicedate, 0, 2, 'L');
            $this->SetTextColor($c, $c, $c);
            $this->SetXY(80, 74);
            $this->Cell(20, 5, 'Invoice Status', 0, 0, 'R');
            $this->SetTextColor(0, 0, 0);
            $this->Cell(20, 5, $invoicestatus, 0, 2, 'L');
    
    
            $this->SetFillColor(224, 243, 251);
            $this->RoundedRect(170, 58, 27, 10, 0, 'F', '1234');
            $this->SetFont('arial', '', 10);
            $this->SetTextColor(0, 0, 0);
            $this->SetXY(150, 58);
            $this->Cell(20, 10, 'Payment Due:', 0, 0, 'R');
            $this->SetTextColor(0, 0, 0);
            $this->Cell(27, 10, $invoiceduedate, 0, 2, 'C');
    
    
            //Items Header
            $w1 = 80;
            $w2 = 35;
            $w3 = 35;
            $w4 = 35;
            $this->SetXY(12, 95);
            $this->SetFont('arial', 'B', 8);
            $this->SetTextColor(119, 119, 119);
            $this->SetDrawColor(231, 240, 244);
            $this->SetFillColor(248, 248, 248);
            $this->Cell($w1, 5, 'NAME', 'B', 0, 'C', true);
            $this->Cell($w2, 5, 'HRS/QTY', 'B', 0, 'C', true);
            $this->Cell($w3, 5, 'RATE', 'B', 0, 'C', true);
            $this->Cell($w4, 5, 'SUBTOTAL', 'B', 0, 'C', true);
    
    
            //Items loop
            for ($i = 0;
                 $i < count($invoice['line_items']);
                 $i++)
            {
                $this->SetXY(12, 100.1 + (17 * $i));
                $this->SetFont('arial', '', 8);
                $this->SetFillColor(244, 248, 250);
                $this->Cell($w1, 7, $invoice['line_items'][$i]['item_name'], 0, 0, 'L', true);
                $this->Cell($w2, 7, $invoice['line_items'][$i]['item_quantity'], 0, 0, 'C', true);
                $this->Cell($w3, 7, 'EURO' . number_format($invoice['line_items'][$i]['item_rate'], 0, '.', ','), 0, 0, 'C', true);
                $this->Cell($w4, 7, 'EURO' . number_format($invoice['line_items'][$i]['item_quantity'] * $invoice['line_items'][$i]['item_rate'], 0, '.', ','), 0, 0, 'C', true);
                $this->SetXY(12, 107.1 + (17 * $i));
                $this->SetFont('arial', '', 8);
                $this->MultiCell($w1, 5, $invoice['line_items'][$i]['description'], 0, 'L', false);
            }
    
    
    //Totals table
            $ht = 7;
            $this->SetXY(106, 120 + (15 * $i));
            $this->SetFont('arial', 'B', 8);
            $this->SetTextColor(119, 119, 119);
            $this->SetDrawColor(231, 240, 244);
            $this->SetFillColor(248, 248, 248);
            $this->Cell(90, $ht, 'INVOICE SUMMARY', 'B', 0, 'C', true);
            $this->SetXY(106, 120.1 + (15 * $i) + ($ht * 1));
            $this->SetFont('arial', '', 8);
            $this->SetTextColor(0, 0, 0);
            $this->Cell(50, $ht, 'Total:', 'B', 0, 'L', false);
            $this->Cell(40, $ht, '€' . number_format($invoice['main']['total'], 0, '.', ','), 'B', 0, 'R', false);
            $this->SetXY(106, 120.2 + (15 * $i) + ($ht * 2));
            $this->Cell(50, $ht, 'Payments:', 'B', 0, 'L', false);
            $this->Cell(40, $ht, '€' . number_format($invoice['main']['payments'], 0, '.', ','), 'B', 0, 'R', false);
            $this->SetXY(106, 120.3 + (15 * $i) + ($ht * 3));
            $this->SetFont('arial', 'B', 8);
            $this->Cell(50, $ht, 'Remaining Balance:', 'B', 0, 'L', false);
            $this->Cell(40, $ht, '€' . number_format($invoice['main']['balance'], 0, '.', ','), 'B', 0, 'R', false);
    
    
            $terms = (isset($invoice['main']['terms'])) ? $invoice['main']['terms'] : $_CONFIG['invoice']['default_terms'];
            $this->SetXY(12, 140.3 + (15 * $i) + ($ht * 3));
            $this->SetFont('arial', '', 8);
            $this->SetTextColor(119, 119, 119);
            $this->MultiCell(185, 5, $terms, 0, 'L', false);
    
    
            $filename = $CONFIG['uploads']['path'] . "invoices\\" . $invoice['main']['invoice_number'] . '.pdf';
            $this->Output($filename); //generat the invoice and then use any where.
    
    
            error_reporting(0);
            header('Content-Description: File Transfer');
            header('Content-Type: application/octet-stream');
            header('Content-Disposition: attachment; filename=' . basename($filename));
            header('Content-Transfer-Encoding: binary');
            header('Expires: 0');
            header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
            header('Pragma: public');
            header('Content-Length: ' . filesize($filename));
            ob_clean();
            flush();
            readfile($filename);
            unlink($filename);
            exit;
        }
    
    
        function RoundedRect($x, $y, $w, $h, $r, $style = '', $angle = '1234')
        {
            $k = $this->k;
            $hp = $this->h;
            if ($style == 'F')
                $op = 'f';
            elseif ($style == 'FD' or $style == 'DF')
                $op = 'B';
            else
                $op = 'S';
            $MyArc = 4 / 3 * (sqrt(2) - 1);
            $this->_out(sprintf('%.2f %.2f m', ($x + $r) * $k, ($hp - $y) * $k));
    
    
            $xc = $x + $w - $r;
            $yc = $y + $r;
            $this->_out(sprintf('%.2f %.2f l', $xc * $k, ($hp - $y) * $k));
            if (strpos($angle, '2')===false)
                $this->_out(sprintf('%.2f %.2f l', ($x + $w) * $k, ($hp - $y) * $k));
            else
                $this->_Arc($xc + $r * $MyArc, $yc - $r, $xc + $r, $yc - $r * $MyArc, $xc + $r, $yc);
    
    
            $xc = $x + $w - $r;
            $yc = $y + $h - $r;
            $this->_out(sprintf('%.2f %.2f l', ($x + $w) * $k, ($hp - $yc) * $k));
            if (strpos($angle, '3')===false)
                $this->_out(sprintf('%.2f %.2f l', ($x + $w) * $k, ($hp - ($y + $h)) * $k));
            else
                $this->_Arc($xc + $r, $yc + $r * $MyArc, $xc + $r * $MyArc, $yc + $r, $xc, $yc + $r);
    
    
            $xc = $x + $r;
            $yc = $y + $h - $r;
            $this->_out(sprintf('%.2f %.2f l', $xc * $k, ($hp - ($y + $h)) * $k));
            if (strpos($angle, '4')===false)
                $this->_out(sprintf('%.2f %.2f l', ($x) * $k, ($hp - ($y + $h)) * $k));
            else
                $this->_Arc($xc - $r * $MyArc, $yc + $r, $xc - $r, $yc + $r * $MyArc, $xc - $r, $yc);
    
    
            $xc = $x + $r;
            $yc = $y + $r;
            $this->_out(sprintf('%.2f %.2f l', ($x) * $k, ($hp - $yc) * $k));
            if (strpos($angle, '1')===false)
            {
                $this->_out(sprintf('%.2f %.2f l', ($x) * $k, ($hp - $y) * $k));
                $this->_out(sprintf('%.2f %.2f l', ($x + $r) * $k, ($hp - $y) * $k));
            }
            else
                $this->_Arc($xc - $r, $yc - $r * $MyArc, $xc - $r * $MyArc, $yc - $r, $xc, $yc - $r);
            $this->_out($op);
        }
    
    
        function _Arc($x1, $y1, $x2, $y2, $x3, $y3)
        {
            $h = $this->h;
            $this->_out(sprintf('%.2f %.2f %.2f %.2f %.2f %.2f c ', $x1 * $this->k, ($h - $y1) * $this->k,
                    $x2 * $this->k, ($h - $y2) * $this->k, $x3 * $this->k, ($h - $y3) * $this->k));
        }
    }
    
    
    ?>
    Toon Meer

    Met vriendelijke groet,
    Andrew Osenga

  • Guest, wil je besparen op je domeinnamen? (ad)
  • Cas
    Imexa
    Ontvangen Reacties
    5
    Berichten
    1.471
    • 24 oktober 2011 om 20:21
    • #2
    PHP
    &euro;

    Tenminste dit is de weergavecode voor een euroteken.

    Grafisch en interactief ontwerper & Wordpress specialist

  • L.Groot
    Elite members
    Ontvangen Reacties
    31
    Berichten
    4.888
    • 24 oktober 2011 om 20:21
    • #3

    Je kan de volgende twee proberen:
    &euro;
    €

    En anders even googlen:
    http://tinyurl.com/69wvatq

  • Tim
    Enlightened
    Ontvangen Reacties
    77
    Berichten
    3.685
    • 24 oktober 2011 om 20:23
    • #4

    Heil Google!
    http://jerrywalsh.org/euro-symbols-o…ith-php-57.html

    Master student IT-recht en Master student Ondernemingsrecht & software ingenieur
    My Personal profile
    My professional profile (LinkedIn/CV)

  • baldex
    Chocolate man
    Berichten
    517
    • 24 oktober 2011 om 20:54
    • #5

    ja had op google gekeken maar geen van die symboolen werkt niet met $euro; krijg ik een super raar symbool en €

    Met vriendelijke groet,
    Andrew Osenga

  • Starohosting
    Professional
    Ontvangen Reacties
    6
    Berichten
    736
    • 24 oktober 2011 om 21:13
    • #6
    PHP
    $objPDF->show(? Valuta ? . chr(128) . ?123.45?);

    Hosting nodig met hoogwaardige kwaliteit? voor lage prijzen!
    Bekijk onze website: hostingkwaliteit.com

    Heb ik je goed geholpen? geef me dan een drankje via:
    paypal.me

  • Cas
    Imexa
    Ontvangen Reacties
    5
    Berichten
    1.471
    • 25 oktober 2011 om 10:25
    • #7
    Citaat van baldex

    ja had op google gekeken maar geen van die symboolen werkt niet met $euro; krijg ik een super raar symbool en €


    Het is ook &euro; niet $euro;

    Grafisch en interactief ontwerper & Wordpress specialist

Participate now!

Heb je nog geen account? Registreer je nu en word deel van onze community!

Maak een account aan Login

ICT Nieuws

  • Quanscient ontvangt €10M om AI- en kwantum-native hardware engineering te bevorderen - Tech.eu

    ICTscripters 27 mei 2026 om 12:03
  • Datalek bij leverancier Canvas - Universiteit van Amsterdam

    ICTscripters 10 mei 2026 om 12:03
  • Data privacy in 2026: Hoe de naleving van GDPR verandert

    ICTscripters 8 mei 2026 om 12:16

Blogs

  • Functioneel ontwerp

    Dees 28 december 2014 om 12:38
  • Access Control List implementatie in PHP/MySQL - deel 1/2

    FangorN 28 december 2018 om 12:35
  • Access Control List implementatie in PHP/MySQL - deel 2/2

    FangorN 29 december 2018 om 12:37
  1. Marktplaats
  2. Design
  3. Voorwaarden
  4. Ons team
  5. Leden
  6. Geschiedenis
  7. Regels
  8. Links
  9. Privacy Policy
ICTscripters ©2005 - 2026 , goedkope hosting door DiMoWeb.com, BE0558.915.582
Sponsors: Beste kattenhotel provincie Antwerpen | Beste Zetes eid kaartlezer webshop
Style: Nexus by cls-design
Stylename
Nexus
Manufacturer
cls-design
Licence
Commercial styles
Help
Supportforum
Visit cls-design