GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   ??How i can insert php into html file ? (https://gfy.com/showthread.php?t=415234)

silver211 01-11-2005 06:03 PM

??How i can insert php into html file ?
 
??How i can insert php into html file ?

Jay_StandAhead 01-11-2005 06:06 PM

just insert it with the php tags and set your server to parse html files

mardigras 01-11-2005 06:11 PM

You could also put the php code on it's own page and embed it into the HTML page with an iFrame.

silver211 01-11-2005 06:20 PM

.shtml ^
 
I have server-parsed extension setting on my server.. It should work with this.. .shtml So i just rename my file.. for file.shtml..

silver211 01-11-2005 06:58 PM

Not working..
 
Hello

I tried to use .shtml extension and add a php tags into my html. and it still dont work ..? ? So any idea for resolve the problem ?

thank you

Paul Waters 01-11-2005 07:04 PM

Is PHP enabled on your server?

Do a simple Hello World file, and get it working first.

silver211 01-11-2005 07:07 PM

Php is installed on my server
 
Php is installed on my server .......

calmlikeabomb 01-11-2005 07:10 PM

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>


Paul Waters 01-11-2005 07:15 PM

Quote:

Originally Posted by silver211
Php is installed on my server .......

Installed. That is a start.

Is Apache configured to use it?

silver211 01-11-2005 07:16 PM

Quote:

Originally Posted by calmlikeabomb
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>



http://www.hotgirl21.com/test.html

Nothing appear

silver211 01-11-2005 07:17 PM

http://www.hotgirl21.com/test.php.. Work.

directfiesta 01-11-2005 07:21 PM

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.

Rantan 01-11-2005 07:23 PM

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...

directfiesta 01-11-2005 07:25 PM

1. Rename yourpage.htm -> yourpage.php
2. Insert this code where you want otherpage.php

<?php include("otherpage.php"); ?>

calmlikeabomb 01-11-2005 07:27 PM

Quote:

Originally Posted by silver211

Don't know what to tell ya man:

http://www.penis-enlargement-product.us/help.php

silver211 01-11-2005 07:43 PM

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">

silver211 01-11-2005 07:53 PM

permission ? maybe is just the problem ? for phpadsnew banner ? what is required permission ?

directfiesta 01-11-2005 07:54 PM

Quote:

Originally Posted by silver211
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">

Keep it simple....

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 .html

directfiesta 01-11-2005 07:55 PM

Quote:

Originally Posted by silver211
permission ? maybe is just the problem ? for phpadsnew banner ? what is required permission ?

Chmod all files and subfolders to 777 ( pf phpadnews). If it works, then you can be more restrictive on your permissions of certain folders...

silver211 01-11-2005 08:11 PM

Phpadsnew
 
Quote:

Originally Posted by directfiesta
Chmod all files and subfolders to 777 ( pf phpadnews). If it works, then you can be more restrictive on your permissions of certain folders...

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 ?

thank you :helpme

silver211 01-11-2005 08:14 PM

Url
 
Check here
http://www.hotgirl21.com/banners/phpadsnew.php

Jace 01-11-2005 08:16 PM

Quote:

Originally Posted by silver211

that is because the file ends in .html

in order for a page on the web to read php it has to end in .php not .html

silver211 01-11-2005 08:24 PM

I resolve the problem
 
Thank you to all for your help .. I resolve the problem.


All times are GMT -7. The time now is 01:10 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123