PHP HELP/

Started by Vinoth, July 15, 2004, 10:26:22 AM

Previous topic - Next topic

Vinoth

i am new to PHP World,


i need an basic help in php,

http://www.webhoststalk.com/vote.php

now this is an vote, how to display this file in html page/

i need to include this file in html page.
Vinoth And Sachin ( SpecHackers Team )
The Best  Way to Help Poor Is not Becoming One Of Them.

Tomer

The include function is a PHP function so it wont work with a .PHP extention.

Vinoth

so would i able to do this or not/

i changed the ext of my file from html to php/
Vinoth And Sachin ( SpecHackers Team )
The Best  Way to Help Poor Is not Becoming One Of Them.

Tomer

Ok if you have a .PHP extention and your server allows PHP than you can inculde other pages into your PHP file.

I would suggest that in your file, vote.php you put the whole contents in a function:

<?php

function showVote()
{

echo 
'HTML CODE';

return;
}
?>



And then on your new PHP files include it like this:

<?php
include("/vote.php");

showVote();
?>


Vinoth

Thanx for the help lamper, i got the help from my friends
Vinoth And Sachin ( SpecHackers Team )
The Best  Way to Help Poor Is not Becoming One Of Them.

Advertisement: