Posted by affiliateian on 03/02/07 08:53
Thanks for all the replies but pretty newbie here. This is what I have
so far on the page:
<?php
$text = file_get_contents($url);
preg_match('<title>(.*)</title>', $text, $matches);
$title = $matches[1];
?>
How does one take the above and insert the variables into this URL?
http://www.stumbleupon.com/submit?url=http://www.yoursite.com/article.php&title=The+Article+Title
Thanks for your patience.
[Back to original message]
|