• 0

Cutenews Problems


Question

I have installed Cutenews perfectly now and posted a new article. I have wrote a HTML page to get the information like this:

<HTML>

<TITLE> Tim Rogers Blog </TITLE>

  	

<?PHP
 include("/cutenews/show_news.php");
?> 

</HTML>

to try to do it. When I visit it, I just get a blank page. The test page is stored in http://timrogers.host-dot.com/diary and the show_news.php file is stored in http://timrogers.host-dot.com/diary/cutenews. What do I need to do? I have visited the show_news.php page, and the news is there!

Edited by TimRogers
Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0
Please also see my web design request @ NeoRequest.net

585196500[/snapback]

Is this code in a .html file or a .php file?

<HTML>

<TITLE> Tim Rogers Blog </TITLE>

  

<?PHP
include("/cutenews/show_news.php");
?> 

</HTML>

Link to comment
Share on other sites

  • 0
Is this code in a .html file or a .php file?

<HTML>

<TITLE> Tim Rogers Blog </TITLE>

  

<?PHP
include("/cutenews/show_news.php");
?> 

</HTML>

585196521[/snapback]

My code is in a HTML file. I'm probably wrong about that. If I am, can you give me a script that would work??? Pretty plzzzzzz!

Link to comment
Share on other sites

  • 0
My code is in a HTML file. I'm probably wrong about that. If I am, can you give me a script that would work??? Pretty plzzzzzz!

585196528[/snapback]

That code is php code, and it wonldn't work in a html file...

Make a new file name it "something.php" and put this code:

<html>
<head>
<title> Tim Rogers Blog </title>
</head>
<body>

<?php
include("/cutenews/show_news.php");
?> 

</body>
</html>

Link to comment
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.