This is a discussion on pdf conversion within the PHP Language forums, part of the PHP Programming Forums category; Hi, I m newbie to the php, I copied a code and pasted it in dreamweaver and opened it in ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hi,
I m newbie to the php, I copied a code and pasted it in dreamweaver and opened it in my local host. still i got these problems! Can u please rectify my probs? The Program is <?php require('fpdf.php'); $pdf=new FPDF(); $pdf->AddPage(); $pdf->SetFont('Arial','B',16); $pdf->Cell(40,10,'Hello World!'); $pdf->Output(); ?> and the out put is: Warning: require(fpdf.php) [function.require]: failed to open stream: No such file or directory in C:\wamp\www\pdf\pdf.php on line 2 Fatal error: require() [function.require]: Failed opening required 'fpdf.php' (include_path='.;C:\php5\pear') in C:\wamp\www\pdf\pdf.php on line 2 can u resolve this problem,And can u send me a source code if time and thigs avail.. Thank u |
|
|||
|
chandoo escribió:
> require('fpdf.php'); > Warning: require(fpdf.php) [function.require]: failed to open stream: > No such file or directory in C:\wamp\www\pdf\pdf.php on line 2 It's pretty straightforward: the file "C:\wamp\www\pdf\fpdf.php" does not exist. Did you download and install FPDF? -- -+ http://alvaro.es - Álvaro G. Vicario - Burgos, Spain ++ Mi sitio sobre programación web: http://bits.demogracia.com +- Mi web de humor austrohúngaro: http://www.demogracia.com -- |
|
|||
|
Hi
A.G.vicario no i dont know where to down load it. is it the address (The address u given on u r reply)to download the fpdf. Thank u can u send me any snippets of code to understand it better . infact i joined in the office one month ago .. advise me thank u. |
|
|||
|
chandoo wrote:
> Hi > A.G.vicario > no i dont know where to down load it. > is it the address (The address u given on u r reply)to download the > fpdf. > Thank u can u send me any snippets of code to understand it better . > infact i joined in the office one month ago .. > advise me thank u. > > Try: http://www.google.com/search?q=fpdf&...ient=firefox-a See the first hit on the page. -- ================== Remove the "x" from my email address Jerry Stuckle JDS Computer Training Corp. jstucklex@attglobal.net ================== |