On Fri, 17 May 2002, James E. Hicks III wrote:
> I do a
> 
>    system("html2ps SOME.html > SOME.pd");
> 
> then I do a
> 
>    system("ps2pdf SOME.pd");

How about just:

   system('html2ps < some.html | ps2pdf > some.pdf');

?

miguel


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

Reply via email to