how can I insert data in a pdf from php??

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • jav_ace@hotmail.com

    how can I insert data in a pdf from php??

    I have been reading this group but I can not find the simple answer
    tohow i can solve what i need to do. I have a pdf template, it is, a
    pdf with some data like name, surname,etc ...and i want from web
    (using php) to open this pdf, fill thesedata and repeat it so many
    times as number of students there are... I have read about fdf , etc,
    but i don`t know how and what tools ishould use....does anybody or
    expert help me? i am frustated cause ican not finish my
    application..an d i am late about this. Thanks in advance.

  • Mike P2

    #2
    Re: how can I insert data in a pdf from php??

    On May 18, 2:03 pm, jav_...@hotmail .com wrote:
    I have been reading this group but I can not find the simple answer
    tohow i can solve what i need to do. I have a pdf template, it is, a
    pdf with some data like name, surname,etc ...and i want from web
    (using php) to open this pdf, fill thesedata and repeat it so many
    times as number of students there are... I have read about fdf , etc,
    but i don`t know how and what tools ishould use....does anybody or
    expert help me? i am frustated cause ican not finish my
    application..an d i am late about this. Thanks in advance.
    PHP is a popular general-purpose scripting language that powers everything from your blog to the most popular websites in the world.


    This is a PHP extension that you can use to do a variety of things
    with PDF files. In your case, you can either write text right onto the
    form, or you can make the text in an image with the GD extension and
    place that image onto the form. It has some stuff relating to
    templates, too. I haven't tried that though.

    Use programmer's-common-sense to figure out the rest.

    -Mike PII

    Comment

    • Usenet

      #3
      Re: how can I insert data in a pdf from php??

      In article <1179511396.392 754.224700@o5g2 000hsb.googlegr oups.com>,
      wrote:
      I have a pdf template, it is, a
      pdf with some data like name, surname,etc ...and i want from web
      (using php) to open this pdf, fill thesedata and repeat it so many
      times as number of students there are... I have read about fdf , etc,
      I don't know fdf is, but fpdf is a very good freeware php library that
      will let you write stuff in pdf files.

      Google is your friend, in this at least.

      Regards
      Mark

      Comment

      • larry@portcommodore.com

        #4
        Re: how can I insert data in a pdf from php??

        On May 18, 12:50 pm, Mike P2 <sumguyovrt...@ gmail.comwrote:
        On May 18, 2:03 pm, jav_...@hotmail .com wrote:
        >
        I have been reading this group but I can not find the simple answer
        tohow i can solve what i need to do. I have a pdf template, it is, a
        pdf with some data like name, surname,etc ...and i want from web
        (using php) to open this pdf, fill thesedata and repeat it so many
        times as number of students there are... I have read about fdf , etc,
        but i don`t know how and what tools ishould use....does anybody or
        expert help me? i am frustated cause ican not finish my
        application..an d i am late about this. Thanks in advance.
        >
        PHP is a popular general-purpose scripting language that powers everything from your blog to the most popular websites in the world.

        >
        This is a PHP extension that you can use to do a variety of things
        with PDF files. In your case, you can either write text right onto the
        form, or you can make the text in an image with the GD extension and
        place that image onto the form. It has some stuff relating to
        templates, too. I haven't tried that though.
        >
        Use programmer's-common-sense to figure out the rest.
        >
        -Mike PII
        If you want to add data to an existing PDF (like fill in a PDF form)
        you also want to get FPDI, which is an extension onto FPDF with
        includes importing and adding content to previously created PDFs.




        Comment

        Working...