Jump to content

student101

Member
  • Posts

    5
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

student101's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Cool! They're similar, the Ajax version has the email checkout option, the one that juandamz is looking for.
  2. I was hoping to clarify something, has this question got anything to do with php-cart-paypal OR Ajax Shopping Cart?
  3. student101

    Backup database

    Not pretending to know anything about anything, just my 2cents... phpMySQLAutoBackup OR automatically-manually-backup
  4. 1. In order for the code to work, the following line in your php.ini has to be uncommented: extension=php_pdf.dll 2. For more information about PDFlib library check: PDF Functions <?php require_once('connection_to_db.php'); ?> <?php // select data from database for the PDF mysql_select_db($database_cnnTest, $cnnTest); $query_rsReportData = "SELECT * FROM categories"; $rsReportData = mysql_query($query_rsReportData, $cnnTest) or die(mysql_error()); $row_rsReportData = mysql_fetch_assoc($rsReportData); $totalRows_rsReportData = mysql_num_rows($rsReportData); ?> <?php // create handle for new PDF document $pdf = pdf_new(); // open a file pdf_open_file($pdf, ""); // Set Info pdf_set_info($pdf, "Author", "Georgi Kralev"); pdf_set_info($pdf, "Title", "Report"); pdf_set_info($pdf, "Creator", "Georgi Kralev"); pdf_set_info($pdf, "Subject", "Report"); // start a new page (A4) pdf_begin_page($pdf, 595, 842); // path of your TTF font directory $fontdir = "C:\WINDOWS\Fonts"; // Open .TTFs (true type fonts) pdf_set_parameter($pdf, "FontOutline", "ArialItalic=$fontdir\ariali.ttf"); pdf_set_parameter($pdf, "FontOutline", "ArialBold=$fontdir\ARIALBD.TTF"); pdf_set_parameter($pdf, "FontOutline", "Arial=$fontdir\ARIAL.TTF"); // ------ Start output of the PDF Content ------// // set the font - Arial Bold 15 $font = pdf_findfont($pdf, "ArialBold", "host",0); pdf_setfont($pdf, $font, 15); // output document title pdf_show_xy($pdf, "Categories Report", 50, 788); // draw a line pdf_moveto($pdf, 20, 780); pdf_lineto($pdf, 575, 780); pdf_stroke($pdf); // set the font - Arial Italic 12 $font = pdf_findfont($pdf, "ArialItalic", "host",0); pdf_setfont($pdf, $font, 12); $y = 750; // output data header pdf_show_xy($pdf, "Category:", 50, $y); $y -= 5; // set the font - Arial 10 $font = pdf_findfont($pdf, "Arial", "host",0); pdf_setfont($pdf, $font, 10); // output the data from Database do { $y -= 15; pdf_show_xy($pdf, $row_rsReportData['name'], 50, $y); } while ($row_rsReportData = mysql_fetch_assoc($rsReportData)); // ------ End output of the PDF Content ------// // end page pdf_end_page($pdf); // close and save file pdf_close($pdf); $buf = pdf_get_buffer($pdf); $len = strlen($buf); header("Content-type: application/pdf"); header("Content-Length: $len"); header("Content-Disposition: inline; filename=report.pdf"); echo $buf; pdf_delete($pdf); ?> <?php mysql_free_result($rsReportData); ?>
  5. I like the concept, some cart tuts forget about the mail parts. Using a well known mailer may be of use for servers that don't support or have mail disabled. PHPmailer or Swiftmail are good options, will post some code when I get a chance to breathe, LOL - Like that's ever possible!
×
×
  • Create New...