View Single Post
Old 04-10-2004, 12:18 PM   #2
Charter
Head Mole
 
Charter's Avatar
 
Join Date: May 2003
Posts: 2,539
Hi. Perhaps use something like the following:
PHP Code:
<?php

if (isset($_REQUEST['query_string'])) {
    
$query_string urlencode($query_string);
}
else { 
$query_string "''"; }

$url "http://atbi.biosci.ohio-state.edu:8880/hymenoptera/nomenclator.name_entry?text_entry=".$query_string;

echo <<<END
<html><head><META http-equiv="Refresh" content="0;URL=$url"></head></html>
END;

?>
Remember to remove any "word" wrapping in the above code.
__________________
Responses are offered on a voluntary if/as time is available basis, no guarantees. Double posting or bumping threads will not get your question answered any faster. No support via PM or email, responses not guaranteed. Thank you for your comprehension.
Charter is offline   Reply With Quote