Re: PHP within shtml?
- From: NC <nc@xxxxxxxxx>
- Date: Mon, 28 Apr 2008 16:21:09 -0700 (PDT)
On Apr 28, 8:35 am, jmpatric...@xxxxxxxxx wrote:
I have a website with a PHP-based message board. The message board
has a donation tracker plug in that manages donation goals and current
donation amounts. At the top of my message board there is a
dynamically updated donation total. It uses this code to display the
information:
Amount We Need To "Keep It Free": $ {$this->ipsclass->cache['donate_cache']['total_goals']}<br>
<br>
Amount Donated To Date: $ {$this->ipsclass->cache['donate_cache']
['total_donations']}
I'd like to also add this dynamically generated tally to my main
site's SHTML page. Is there a way to add PHP, using Javascript or
whatever, so that the tally grabs what it needs from the database?
Doing it the way you want (i.e., combining SSI and PHP
in a single file) is impossible (SSI and PHP are handled by
different server modules, so you can't combine SSI and PHP
code and expect the server to execute both).
What you can do is create a simple PHP script that only shows
"Amount Needed" and "Amount Donated" and show its output in an
iframe on the main (or any other) page.
A slight modification of this approach is to create an AJAX-type
widget that would request the PHP script and display its output
in a predefined location on the home page.
Cheers,
NC
.
- References:
- PHP within shtml?
- From: jmpatrick63
- PHP within shtml?
- Prev by Date: Re: Seeing encrypted code in php
- Next by Date: Re: Seeing encrypted code in php
- Previous by thread: Re: PHP within shtml?
- Next by thread: Seeing encrypted code in php
- Index(es):
Relevant Pages
|