I started to write a really long detailed explanation about how php works and intertwines with HTML.&nbsp; But then I realized that I was making the question much more difficult than what it had to be.&nbsp; So yes, php code can be embeddedinto an HTML document, and here&#39;s a simple example. But as Tony said, you have to rename the document with a .php extension so that your web server knows to expect php code within the document.&nbsp; Otherwise, your code will appear as regular text.<br>
<br><br>------ snip ------<br>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot; &quot;<a href="http://www.w3.org/TR/html4/loose.dtd">http://www.w3.org/TR/html4/loose.dtd</a>&quot;&gt;<br>&lt;HTML&gt;<br>
&lt;HEAD&gt;<br>&nbsp;&lt;TITLE&gt;&lt;? echo &quot;test page&quot;; ?&gt;&lt;/TITLE&gt;<br>&lt;Body&gt;<br><br>&lt;p align=center&gt;<br>Post 10 URL links using PHP<br>&lt;?<br>// Something a lil more complex<br>&nbsp;$loop=1;<br>
<br>&nbsp;while ($loop &lt;=10) {<br>&nbsp; echo &quot;&nbsp; &lt;a href=\&quot;test-$loop.html\&quot;&gt; $loop &lt;/a&gt;&quot;;<br><br>&nbsp; if ($loop &lt; 10) { echo &quot; | \n&quot;; }<br>&nbsp; $loop++;<br>&nbsp;}<br>?&gt;<br>&lt;/p&gt;<br><br>
&lt;/Body&gt;<br>&lt;/HTML&gt;<br>
------ snip ------<br><br><br>Hope this helps<br><br>-Rob<br><br><div class="gmail_quote">On Thu, Nov 20, 2008 at 12:17 AM, Robert Wolfe <span dir="ltr">&lt;<a href="mailto:nflug@muzzlethem.com">nflug@muzzlethem.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hi all!<br>
<br>
I was wondering, can a PHP script be embedded anywhere inside an HTML file<br>
and if so, how?<br>
_______________________________________________<br>
nflug mailing list<br>
<a href="mailto:nflug@nflug.org">nflug@nflug.org</a><br>
<a href="http://www.nflug.org/mailman/listinfo/nflug" target="_blank">http://www.nflug.org/mailman/listinfo/nflug</a><br>
</blockquote></div><br><br clear="all"><br>-- <br>-Rob<br><br>Ben Franklin Quote: &quot;They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety.&quot;<br>