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.