Connecting Tech Pros Worldwide Help | Site Map

Include php from html

  #1  
Old July 17th, 2005, 01:54 PM
Luke Bellamy
Guest
 
Posts: n/a
Hi - I have been asked to add a hit counter to a standard HTML page.
I have found a php script to implement the counter but need to show it
on the html page.
I cannot include a PHP in the html file can I? the web server will not
pre-parse a html file correct?

I would like to put the PHP hit counter on the web site that only
contains html files. Anyone have a good idea how I can do this without
chaning all the files to .php?

Thanks,
Luke Bellamy
Newcastle, Australia
  #2  
Old July 17th, 2005, 01:54 PM
Tony Marston
Guest
 
Posts: n/a

re: Include php from html


It is most definitely possible to include a PHP counter in an HTML file
because I have been doing it for years. In my HTML file I include a link as
follows:

<p><img src="http://www.mydomain.com/counter.php?page=/whatever.html"
alt="counter" border="0"></p>

The PHP script 'counter.php' uses the 'page=' argument to identify which
document to count, then outputs the result as an image.

Easy peasy lemon squeezy.

--
Tony Marston

http://www.tonymarston.net



"Luke Bellamy" <bellamy_luke@hotmail.com> wrote in message
news:3cab9daf.0504281916.68454042@posting.google.c om...[color=blue]
> Hi - I have been asked to add a hit counter to a standard HTML page.
> I have found a php script to implement the counter but need to show it
> on the html page.
> I cannot include a PHP in the html file can I? the web server will not
> pre-parse a html file correct?
>
> I would like to put the PHP hit counter on the web site that only
> contains html files. Anyone have a good idea how I can do this without
> chaning all the files to .php?
>
> Thanks,
> Luke Bellamy
> Newcastle, Australia[/color]


  #3  
Old July 17th, 2005, 01:54 PM
Alvaro G Vicario
Guest
 
Posts: n/a

re: Include php from html


*** Luke Bellamy wrote/escribió (28 Apr 2005 20:16:29 -0700):[color=blue]
> I would like to put the PHP hit counter on the web site that only
> contains html files. Anyone have a good idea how I can do this without
> chaning all the files to .php?[/color]

You can instruct the webserver to pass *.html files through PHP
interpreter. If you are using Apache you may be able to use an .htaccess
file (unless prohibited by sysadmin):

# For Apache 2:
<Files *.html>
SetOutputFilter PHP
SetInputFilter PHP
</Files>


--
-- Álvaro G. Vicario - Burgos, Spain
-- http://bits.demogracia.com - Mi sitio sobre programación web
-- Don't e-mail me your questions, post them to the group
--
  #4  
Old July 17th, 2005, 01:55 PM
cowofchaos@gmail.com
Guest
 
Posts: n/a

re: Include php from html


You could also display the counter in a frame or <iframe> on the page,
I've done it before, sorry I can't give you an example right now, I
havn't used frames in ages

  #5  
Old July 17th, 2005, 01:56 PM
Mladen Gogala
Guest
 
Posts: n/a

re: Include php from html


On Thu, 28 Apr 2005 20:16:29 -0700, Luke Bellamy wrote:
[color=blue]
> I cannot include a PHP in the html file can I? the web server will not
> pre-parse a html file correct?[/color]

Of course you can. That is what <?php....?> is for. Rough template looks
like this:

<html>
<head>
<title>
<?php Requires, class declarations and alike?> </head>
<body>
<tag>
<?php action ?>
</body>
</html>


It is one of the biggest advantages of PHP that is freely mixable with
HTML. Otherwise, you could use perl instead.

--
Egoist: A person of low taste, more interested in themselves than in me.

Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
OnClick from HTML should trigger a query - depending upon that a new PHP page should ramalingam answers 1 November 2nd, 2006 10:28 AM
Passing parameters from HTML to PHP Dave Kelly answers 1 September 26th, 2006 09:25 PM
How to Include PHP script in shtml file ??? EnjoyNews answers 10 October 28th, 2005 03:25 PM
How to call script from html page? deko answers 21 July 17th, 2005 08:17 AM