<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How Can A Multi Page Form Be Shown On One Website While All The Content Comes From Another Website?</title>
	<atom:link href="http://aaron-ong.com/how-can-a-multi-page-form-be-shown-on-one-website-while-all-the-content-comes-from-another-website/feed/" rel="self" type="application/rss+xml" />
	<link>http://aaron-ong.com/how-can-a-multi-page-form-be-shown-on-one-website-while-all-the-content-comes-from-another-website/</link>
	<description>Aaron</description>
	<lastBuildDate>Tue, 13 Jul 2010 10:55:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Namibnat</title>
		<link>http://aaron-ong.com/how-can-a-multi-page-form-be-shown-on-one-website-while-all-the-content-comes-from-another-website/comment-page-1/#comment-7941</link>
		<dc:creator>Namibnat</dc:creator>
		<pubDate>Mon, 09 Nov 2009 12:01:25 +0000</pubDate>
		<guid isPermaLink="false">http://aaron-ong.com/how-can-a-multi-page-form-be-shown-on-one-website-while-all-the-content-comes-from-another-website/#comment-7941</guid>
		<description>Well, perhaps this is too simple an answer, but using includes.  With php you could create a few form elements in small .php files and bring them into each page as you need them using an include:
&lt;form action=&quot;url/handlingpage/&quot; method=&quot;POST&quot;&gt;
 &lt;?php
	  /*  Name Get Script  */
	  include &#039;scripts/name_form.php&#039;;
	  /*  Password Get Script  */
	  include &#039;scripts/password_form.php&#039;;
	  /*  Comment Get Script  */
	  include &#039;scripts/comment_form.php&#039;;
?&gt;
&lt;/form&gt;
or something like that?</description>
		<content:encoded><![CDATA[<p>Well, perhaps this is too simple an answer, but using includes.  With php you could create a few form elements in small .php files and bring them into each page as you need them using an include:</p>
<form action="url/handlingpage/" method="POST">
 < ?php<br />
	  /*  Name Get Script  */<br />
	  include 'scripts/name_form.php';<br />
	  /*  Password Get Script  */<br />
	  include 'scripts/password_form.php';<br />
	  /*  Comment Get Script  */<br />
	  include 'scripts/comment_form.php';<br />
?><br />
</form>
<p>or something like that?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
