ja klopt de naam wel er van
Posts by baldex
-
-
-
-
als ik me niet vergis was dit meer voor social network websites webwinkels
maar om het kort te houden
het is belangrijker voor websites met gegevens van klantenmaar als ik het verkeerd zeg moet iemand het zegen :p
-
ja ik sta zelf achter het reactie van habib10
iconen passen er niet echt bij de layout
en te grote Lettertypeik weet dat je beter kan dus doe dat ook haha;)
-
ik zou zeggen breid het uit maak een mooi ontwerp er om heen want het ontwerp nu trekt mij niet echt niet aan
-
ik zelf vind de gehele layout niet overzichtelijk en zelf vind ik dat je wel wat meer tijd er in kon steken
maar ik krijg ook niet echt een wauw gevoel dat ik elke dag deze site ga bezoeken en denk jou bezoekers ook niet
@Joyeria geeft al een goeie voorbeeld hoe je het mooier kan maken
en werk je idee wat beter uitwie weet word het wel wat:cheer:
-
-
layout niet uniek is meerdere keren geript en gebruikt door verschillende mensen
-
-
-
driver pack solution gebruiken
-
jef
ik heb er wel een voor je heel simpel en makkelijk aan te passen
ik stuur je het wel als je online bentgroet,
Andrew -
heb het beetje aangepast
-
Beste
ja sommige kennen mij nog wel
en post ook niet zoveel op cpmaar ik dacht ik post voor deze keer een template
graag wil ik wel een beetje feedback hier over
en als het niet teveel gevraagd is een cijfervoor dat ik jullie het template laat zien een uitleg
het nut van deze template is het laten zien van movie reviews en komende filmen van 2012
natuurlijk is het de bedoeling dat bezoekers ook makkelijk op pagina's kunnen browsen en snel dingen kunnen vindenmaar ik begin af te dwalen van het onderwerp wat ik wilde laten zien en om het feedback van jullie te krijgen dus hier heb je hem dan
natuurlijk voor de link piraten
http://www.starohost.com/articles/art/moviecube.pnggroet,
Baldex -
niet de mooiste foto maar ja
-
-
ja had op google gekeken maar geen van die symboolen werkt niet met $euro; krijg ik een super raar symbool en €
-
Beste
de pdf word automatisch gemaakt door een php bestand maar krijg maar niet de euro symbool er in weet iemand een oplossing
PHP
Toon Meer<?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)); } } ?>
-
Formateer het dan zou die het gewoon moeten doen