>How would I get recent stock prices in a page? I obviously need to get 
>this from some source.

It's so easy, you have to pinch yourself to make sure you're not dreaming...
:-)

<?php
  $stockhtml = file('http://www.sometocksite.com') or die("Could not read
stock page");
  $stockhtml = implode('', $stockhtml);
  # You now have their HTML in $stockhtml
  # Do whatever you want with it
  # Tear it apart, stuff it in the database, whatever.
?>

-- 
Like Music?  http://l-i-e.com/artists.htm


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

Reply via email to