<div class="gmail_quote"><div>Maybe kludgy, but could be very quick to do depending on your structure: in a custom module:</div><div><br></div><div>/**</div><div><div> * Implementation of hook_menu().</div><div> */</div><div>
 function example_menu() {</div><div>  </div><div>  $items[&#39;test/page&#39;] = array(</div><div>    &#39;title&#39; =&gt; &#39;Test Page Title&#39;,</div><div>    &#39;page callback&#39; =&gt; &#39;test_page&#39;,</div>
<div><span class="Apple-tab-span" style="white-space:pre">        </span>&#39;access arguments&#39; =&gt; array(&#39;access content&#39;), </div><div><span class="Apple-tab-span" style="white-space:pre">        </span> &#39;type&#39;=&gt;MENU_NORMAL_ITEM</div>
<div>  );</div><div>  </div><div>  return $items;</div><div>}</div></div><div><br></div><div><div>function test_page(){</div><div><span class="Apple-tab-span" style="white-space: pre; ">        </span>$request = drupal_http_request(&quot;<a href="http://www.example.com/pages/test.php">http://www.example.com/pages/test.php</a>&quot;);</div>
<div><span class="Apple-tab-span" style="white-space: pre; ">        </span>return $request-&gt;data;</div><div>}</div></div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Date: Tue, 21 Jun 2011 12:29:20 -0500<br>
From: Scott Massey &lt;<a href="mailto:scott.massey@gmail.com">scott.massey@gmail.com</a>&gt;<br>
Subject: [support] Integrating completely unrelated pages into Drupal<br>
To: <a href="mailto:support@drupal.org">support@drupal.org</a><br>
Message-ID: &lt;<a href="mailto:BANLkTik7m%2BC8r1-MrBdG1OG2zkgvxovQWA@mail.gmail.com">BANLkTik7m+C8r1-MrBdG1OG2zkgvxovQWA@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
Hi!<br>
<br>
I am about 6 months into Drupal and enjoy it immensely. I am putting<br>
together a portfolio of some web development I have done and have several<br>
pages of data visualiztions using php and a javascript library called<br>
Protovis. If I want to bring that into drupal as a page, is there a way to<br>
do that? There are library calls, jquery, etc. I am having trouble wrapping<br>
my head around how to do it. I would like the pages to be a menu item that<br>
opens a page within the drupal site. Here is an example of a page:<br>
<a href="http://modernamericanman.com/ids499/protovis7.php" target="_blank">http://modernamericanman.com/ids499/protovis7.php</a><br>
<br>
Thanks!<br>
<br>
Scott<br></blockquote></div>