[PHP] printing html
Hi friends, =) someone have experience using printer functions ? I mean... I would like to print a php generated page with a link within this page example: I have an html page with a table..but I need to print without header, footer and also I need to print in landscape... all of this with a link within this generated page. can I do this with PHP ? thanks for your advice. best regards.. (sorry me... my english isn't good enough) :-) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
[PHP] creating PDF on the fly
Hi, I don't know if this question was here before.. but... :-) I would like to know if someone have some experience on creating PDF files on the fly, in my new job I need to do this .. well.. actually I must do this :-) files to be generated are documents with free information for any user of our website, but some documents must have portrait and landscape pages.. I found a couple of classes but with them I only can create informs in portrait or landscape orientation then how can I create a pdf file (on the fly) that containt portrait and landscape orientation? I hope that you can understand my tarzan-english :-) thanks. Best Regards -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] pdf4php class
Hi there, someone have some experience with this class?? cheers, (o_ / /\ tuxcl en yahoo punto com V_/_ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] PDF4PHP Class
Hi there, someone have some experience with this class?? cheers, (o_ / /\ tuxcl en yahoo punto com V_/_ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] select+uploading multiple files
Hi everybody! I'm new in the list. I'll help anybody if I can =) by now I have a little trouble ;-) I have to create a php page where users can upload many files the idea is that users could select many files by holding down the shift key... with this I can avoid to put many input tags in my page. When I use an and pass to the next page a temporary file name ("/var/temp/phpGH65YT") is created.. but if I try to use another way to send the file name.. this temp file name is not created. and I just get an "error: I cannot open the file name test.txt in /var/html/pages/test.php for reading" an alternative is in fact of I know the file names that users must upload. I could ask them for the path and then I'd show a list of files to upload and users only will have to click on one button. is it possible to make more easy the file uploading for users? I mean... is it possible to upload many files without to choose one by one within a html page with many input tags? ooh yes.. I cannot use zipped files not even a ftp connection best regards from Chile. PS: I apology for my english... I hope that you can understand me =)
Re: [PHP] select+uploading multiple files
Hi Shane.. :-) thankyou for your help.. I was wondering myself about that.. and I surfed the net for many days just searching for a solution... but now I know what it is the limitation.. thanks again. =) I think as you say.. consider a client-side applet. best regards from Chile --Patricio (aka Fitiux) PS: sorry if my english isn't good.. :-)
[PHP] javascript to php ????
Hi =) is it possible to pass a javascript array to php ??? thanks.
Re: [PHP] javascript to php ???????
>>Hi =) >>is it possible to pass a javascript array to php ??? >by the time javascript comes into play, php has already done it's job >and left the building. If you mean can javascript pass variables to a >new request for php to handle, then sure. Thanks for your reply. =) I have a little problem.. well.. with php I build an html page with javascript to validate a form, the action of this form is call again to the php page. I mean... test.php - (make an html page)---> question.html ---(submit form)> test.php I populated an array but now I need to pass this array to the same starting php page again. can I do this? --Patricio (I apology because my english is not good enough.. I hope that you can understand me.. )
Re: [PHP] javascript to php ???? THANKS =)
Thanks to all for help me.. =) I hope to help someone soon. --Patricio.
RE: [PHP] file upload troubles
Hi :-) could you post your code? regards, --Patricio - Original Message - From: Nikola Veber <[EMAIL PROTECTED]> To: php forum <[EMAIL PROTECTED]> Sent: Thursday, November 22, 2001 10:01 PM Subject: [PHP] file upload troubles > Hi ! > I'm having terrible troubles with the file upload program I need. I have read a couple of tutorials and studied the examples > in the manual, but it won't work. Every tutorial I read worked with variables $usrefile, $userfile_name etc. When I copy > the same example code , I get the error msg. that $usefile_name is unkown. I'd also like to know what does > enctype=\"multipart/form-data\" > mean and what is its function. > Thanks > Nikola -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
RE: [PHP] read file
Hi! you could use something like this..: $fp=fopen("pathto/".$filewithip,"r"); while ($line=fgets($fp,1024)) { echo "ip : ".$line; } fclose($fp); cheers, --Patricio - Original Message - From: PHP Newbie <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, November 23, 2001 6:00 AM Subject: [PHP] read file > hi, > i have a file with ips inside > > 192.168.1.1 > 192.168.1.2 > ... > now i must write that in a html table with php. > i think that is easy, but i'm a newbie and don't find anything how to do it. > please help me > thx -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]