Source: Darren's Outpost ( from this entry , this fragment itself )

  1. <?
  2. // This won't work with Opera 7.54 or even earlier,
  3. // or this never worked before in Opera up to 8.5
  4. header("Location: http://www.domain.com/file01.php?do=something#anchorhere");
  5. // No problem for this though
  6. header("Refresh: 5; http://www.domain.com/file01.php?do=something#anchorhere");
  7. // A method to overcome the problem in Opera
  8. header("Refresh: 0; http://www.domain.com/file01.php?do=something#anchorhere");
  9. ?>