ארז זה לא עובד..):
הנה הקוד במלואו בקיצור:
PHP קוד:
<?php
function get_part($start, $end, $haystack)
{
$start_position = strpos($haystack, $start, 0) + strlen($start);
$end_position = strpos($haystack, $end, $start_position);
$haystack_length = strlen($haystack);
return substr($haystack, $start_position, ($end_position-$start_position));
}
$fullstring = htmlspecialchars(file_get_contents("http://driverfast.com/AllSites/1/Pages/Admin/Fragment_Update.asp?Tree=29&FragmentId=1654"));
echo get_part('<option value="DOS">', '</option>', '' . $fullstring . '');
?>
תודה!!!