PDF form Files

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Vincent

    #1

    PDF form Files

    Hello!

    Is ti possible to create a PDF form and to extract fields from this file
    in PHP?
    I ve taken a look to the doc and it's almost about creating PDF files in
    PHP. All I need is to extract data from PDF forms, a little bit like I
    do from XML files with the following function::

    $xml_Infos = simplexml_load_ file($file_XML) ;

    thanks,
    Vincent.
    PS: I am really novice in the management of PDF files, I don't even know
    how to create a PDF form...
  • strawberry

    #2
    Re: PDF form Files


    Vincent wrote:
    Hello!
    >
    Is ti possible to create a PDF form and to extract fields from this file
    in PHP?
    I ve taken a look to the doc and it's almost about creating PDF files in
    PHP. All I need is to extract data from PDF forms, a little bit like I
    do from XML files with the following function::
    >
    $xml_Infos = simplexml_load_ file($file_XML) ;
    >
    thanks,
    Vincent.
    PS: I am really novice in the management of PDF files, I don't even know
    how to create a PDF form..
    try googling "php fdf" without the quotes.

    Comment

    • Vincent

      #3
      Re: PDF form Files

      strawberry wrote:
      Vincent wrote:
      >
      >>Hello!
      >>
      >>Is ti possible to create a PDF form and to extract fields from this file
      >>in PHP?
      >>I ve taken a look to the doc and it's almost about creating PDF files in
      >>PHP. All I need is to extract data from PDF forms, a little bit like I
      >>do from XML files with the following function::
      >>
      >>$xml_Infos = simplexml_load_ file($file_XML) ;
      >>
      >>thanks,
      >>Vincent.
      >>PS: I am really novice in the management of PDF files, I don't even know
      >>how to create a PDF form..
      >
      >
      try googling "php fdf" without the quotes.
      >
      Yes! It might be OK with php fdf...

      Thanks,
      Vincent.

      Comment

      Working...