What are some common methods for embedding external content like a guestbook into a webpage without using frames?

When embedding external content like a guestbook into a webpage without using frames, one common method is to use PHP include() function to pull in the external content and display it within the webpage. This allows for seamless integration of external content without the need for frames.

<?php
  include('external_guestbook.php');
?>