??How i can insert php into html file ?
??How i can insert php into html file ?
Collapse
X
-
just insert it with the php tags and set your server to parse html files
Our Programs: StandAhead | IndieBucks | BoyCrushCash | Phoenixxx | EmoProfits | BritishBucks | HunkMoney | LatinoBucks
Make $$$ with Gay! Lowest Minimum Payouts in the Business, Perfect Track Record, Amazing Sites -
Comment
-
Edit: Just rename your html files to .php extension and do something like this:
Code:<html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <?php echo 'Sup Hoe' ?> </body> </html>
Last edited by calmlikeabomb; 01-11-2005, 05:11 PM.subarus.Comment
-
Installed. That is a start.Originally posted by silver211Php is installed on my server .......
Is Apache configured to use it?
PaulComment
-
Originally posted by calmlikeabombEdit: Just rename your html files to .php extension and do something like this:
Code:<html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <?php echo 'Sup Hoe' ?> </body> </html>
http://www.hotgirl21.com/test.html
Nothing appearComment
-
-
Before running, start walking....
make a file with notepad :
<?php phpinfo(); ?>
that you will call phpinfo.php
upload to server in your directory where you index.html is
and call:
http://www.mydomain.com/phpinfo.php
If this give you your config ( or not) come back here.I know that Asspimple is stoopid ... As he says, it is a FACT !
But I can't figure out how he can breathe or type , at the same time ....Comment
-
it depends on several things...
is php installed?
is your HTTP server config to use it?
what extension (.html, .php, .php4 ect...) does your http server read php with?
if you've got all that crap set..and you got the php syntax right..it'll work...Comment
-
1. Rename yourpage.htm -> yourpage.php
2. Insert this code where you want otherpage.php
<?php include("otherpage.php"); ?>Last edited by directfiesta; 01-11-2005, 05:28 PM.I know that Asspimple is stoopid ... As he says, it is a FACT !
But I can't figure out how he can breathe or type , at the same time ....Comment
-
Don't know what to tell ya man:Originally posted by silver211
http://www.penis-enlargement-product.us/help.phpsubarus.Comment
-
When i created a test.php is work.. but it's not work with my main page.
you can see below what the code is insert in my page .. (Phpinfo .. work.)
</table>
<br />
<?php
if (@include(getenv('DOCUMENT_ROOT').'/phpAdsNew-2.0/phpadsnew.inc.php')) {
if (!isset($phpAds_context)) $phpAds_context = array();
$phpAds_raw = view_raw ('zone:1', 0, '_blank', '', '1', $phpAds_context);
$phpAds_context[] = array('!=' => 'bannerid:'.$phpAds_raw['bannerid']);
echo $phpAds_raw['html'];
}
?>
<div align="center">Comment
-
Keep it simple....Originally posted by silver211When i created a test.php is work.. but it's not work with my main page.
you can see below what the code is insert in my page .. (Phpinfo .. work.)
</table>
<br />
<?php
if (@include(getenv('DOCUMENT_ROOT').'/phpAdsNew-2.0/phpadsnew.inc.php')) {
if (!isset($phpAds_context)) $phpAds_context = array();
$phpAds_raw = view_raw ('zone:1', 0, '_blank', '', '1', $phpAds_context);
$phpAds_context[] = array('!=' => 'bannerid:'.$phpAds_raw['bannerid']);
echo $phpAds_raw['html'];
}
?>
<div align="center">
Make a page where you will put your phpadnews script.
Call it phpadnews.php
Check if it works and banners rotate.
If so, the use the :
<?php include("phpadnews.php"); ?>
where you want the banners to show in your main page. Change your mainpage extension to php, otherwise it will not work.
You could even include this in a header that then could be included in all your pages
OR:
in a .htaccess file, add:
AddType application/x-httpd-php .htmlI know that Asspimple is stoopid ... As he says, it is a FACT !
But I can't figure out how he can breathe or type , at the same time ....Comment
-
Chmod all files and subfolders to 777 ( pf phpadnews). If it works, then you can be more restrictive on your permissions of certain folders...Originally posted by silver211permission ? maybe is just the problem ? for phpadsnew banner ? what is required permission ?I know that Asspimple is stoopid ... As he says, it is a FACT !
But I can't figure out how he can breathe or type , at the same time ....Comment
-
Phpadsnew
I use Phpadsnew.. The server seem to be ask for a login when the script try to connect to promo.adrevservice.com ?? So , it possible to stop this ?Originally posted by directfiestaChmod all files and subfolders to 777 ( pf phpadnews). If it works, then you can be more restrictive on your permissions of certain folders...
thank you
Comment
-
-
that is because the file ends in .htmlOriginally posted by silver211
in order for a page on the web to read php it has to end in .php not .htmlComment

Comment