[PHP] SOAP client class that supports https????
I am working on a project that requires me to access a web service over https. I was wondering if anyone has any luck getting this class to work over https or if anyone knows of a soap client class that supports https?? thanks, Anson Smith
Re: [PHP] SOAP client class that supports https????
The class I am referring to in the original message is nuSphere's nuSoap class which works great over http by the way. ---Original Message--- From: Anson Smith Date: Thursday, August 01, 2002 12:38:47 PM To: [EMAIL PROTECTED] Subject: [PHP] SOAP client class that supports https I am working on a project that requires me to access a web service over https. I was wondering if anyone has any luck getting this class to work over https or if anyone knows of a soap client class that supports https?? thanks, Anson Smith
[PHP] Re: PHP and PDF
If you can edit the PDF file and have access to acrobat then you can use adobe's fdf format. Basically you just create a read-only text field on the original PDF and use php to fill in the value for it every time it's loaded here's some links http://www.php.net/manual/en/ref.fdf.php http://www.phpbuilder.com/columns/uwe20001116.php3 - good tutorial ---Original Message--- hello again. > thanks for the responses so far. > let me change something from my prevoius post. > let's say that i'm using an existing pdf form (i won't be creating a > new one), is it still possible to use php to update a number that'll be > printed on the pdf form each time it is accessed? > again, thanks in advance. > gregory > [EMAIL PROTECTED] "Brian McGarvie" <[EMAIL PROTECTED]> - 7/1/02 11:50 AM > Actually I just for a brilliant Free PDF library... > www.fpdf.org > Excellent tutorials/docs... > Use PHP to dynamically generate your forms and include any info you > wish from a database i.e. the ID and so on... >> -Original Message- >> From: Gregory Hernandez [mailto:[EMAIL PROTECTED]] >> Sent: 01 July 2002 4:25 PM >> To: [EMAIL PROTECTED] >> Subject: [PHP] PHP and PDF >> >> >> hello everyone-- >> >> i'd like to know if this can be solved with php. >> >> i'll be creating a pdf form that'll be downloaded, filled and turned >> in. >> the form must have a unique NUMBER printed on it each time it is >> downloaded. >> >> i'd like to use php to update this NUMBER (ie. counter + 1) each > time >> the form is >> accessed, and automatically print this NUMBER on the form that sits > on >> the server. >> >> is this possible? >> >> thanks in advance. >> >> >> gregory >> [EMAIL PROTECTED] >> >> >> >> -- >> PHP General Mailing List (http://www.php.net/) >> To unsubscribe, visit: http://www.php.net/unsub.php >> >> -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] libmcal for win32
Does anybody know where I can get the libmcal dll's precompiled for win32?
[PHP] Form Based Authentication
I am new to PHP and I am attempting to use some type of authentication in my site. My first page is a simple HTML form page with 2 fields username and passwrd. that form is POST'ed to a 2nd page. In the second page I start a session, and if $_POST["username"] is set I Register a "authenticated_user" session variable. (This will be replaced by an actual authenticate function). Could Someone Explain why I have to submit my first form twice in order to be considered authenticated. Also any pointers to tutorials or samples of form based authentication would be appreciated. My Code is attached: _IncrediMail - Email has finally evolved - Click Here verify.php Description: unknown/unknown -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] SESSIONS not timing out
My I am working on a PHP page that uses sessions. I use $_SESSION['whatever'] to set all my session vars. I can use the session_destroy() and it works fine but if I just close the browser (All Browsers), when I come back to the page the Session is still active. the session.cookie_lifetime is set to 0 in php.ini. any help will be appreciated.