Re: [PHP] Changing page orientaion for printing

2003-01-17 Thread Joshua Pierre
On Fri, Jan 17, 2003 at 05:07:30PM +1100, Stanislav Skrypnik wrote:
 Hi everybody,
 Is it possible using PHP change page orientation in browser so that when
 user clicks
 on Print button page automatically rotated to landscape orientation.
 I've heard that it is possible to do with ActiveX but due to security reason
 ActiveX might be disabled.
 Thanks for any help in advance,
 Stas.

I am fairly sure this can be done with cascading style sheets (CSS)
automatically.

Have a look here:- http://www.w3.org/TR/REC-CSS2/media.html

Cheers,

Josh

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] mail client?

2003-01-14 Thread Joshua Pierre
 Does anyone know any reliable php/mysql mail-clients with support for pop3?

IMP perhaps ?

Have a look over at http://www.horde.org/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] i want to send 2 variables????

2003-01-09 Thread Joshua Pierre
On Thu, Jan 09, 2003 at 09:14:21AM -0500, Ysrael Guzm?n wrote:
  
 i like send two variables using:
  
 href=mi page.php??
  

http://blah.com/page.php?var1=contentsvar2=contents

That should do it for you.

Cheers,

Josh

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] include, require, require_once

2001-07-20 Thread Joshua Pierre

Hi,

On Sat, Jul 21, 2001 at 12:18:38AM -0300, Thiago Locatelli da Silva wrote:
 what is the diference beetwen this functions?

I believe the include/require_once() functions check to see if that particular include 
was previously included in the script and if it was it ignores it, at least that is 
the way I understand it.

require() differrs from include() because it will always read the targetted file even 
if the line of code it is sitting on is never actually executed.

Hope that describes it for you.

Regards,

Josh
--
First post to list :)

-- 
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]