> Can someone point me to some documents about pulling images from out side the doc 
> root?
> 

Go to php.net and search for the following functions:

file()
fopen()
fget()

These functions should have listings to other functions.  In case you
knew about these functions but didn't know, you can use web addresses. 
So, you could:

<?php
  // excuse the pseudocode
  $some_var = file("http://www.yahoo.com";);
  do_something($some_var);
?>

-Dan


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

Reply via email to