PDA

View Full Version : PHP in Blogger?



p|nK^bEe
July 9th, 2006, 23:47
I don't know if I am posting in the right board...but I just want to know how can I publish my entries from Blogger in .php?

p|nK^bEe
July 21st, 2006, 07:33
Bump...

Anyone knows?

kabatak
July 21st, 2006, 09:00
what exactly do you mean by publish in .php?

p|nK^bEe
July 26th, 2006, 07:12
Blogger by default publish blog entries in .html. However, all pages in my site are in .php, so I can't get Blogger to publish my entries.

webadpro
July 26th, 2006, 10:22
Just change the extention.. to php

p|nK^bEe
July 26th, 2006, 11:29
Just change the extention.. to php
Nope, it doesn't work when I change the archive's extension to .php. Is this the right way to do?

webadpro
July 26th, 2006, 12:11
add this:

index.php

and in that file wirte this:

<?
include('filename.html');
?>

Change filename for your index file name or ur site

Give that a go!

p|nK^bEe
July 26th, 2006, 18:40
add this:

index.php

and in that file wirte this:

<?
include('filename.html');
?>

Change filename for your index file name or ur site

Give that a go!

Hm, pretty confused here. So I currently have my index page as index.php, so I'll have to add <? include('blogpage.php'); ?>? Or should the page be in HTML?

webadpro
July 27th, 2006, 00:18
add

<?
include('filename.html');
?>

in your index.php page where you want it to appear!

p|nK^bEe
July 27th, 2006, 10:46
No sorry...this doesn't work for me...