Author |
Message |
02/06/2003 15:13:41
|
caejun
Newbie
Joined: 02/06/2003 06:04:08
Messages: 4
Offline
|
This site and forum really needs some better support
|
|
02/06/2003 15:36:37
|
dante
Beginner
Joined: 28/05/2003 00:23:28
Messages: 5
Offline
|
Hi try this:
<?php
/* Include this before your html code */
include "pollphp/db/poll_cookie.php"; ";
?><html> <head>blah blah
</head>
<body>where you want to appear..
<?php
/* path */
$poll_path = "/home/virtual/site45/fst/var/www/html/pollphp/db/poll_cookie.php";
require $poll_path."/include/config.inc.php";
require $poll_path."/include/class_poll.php";
$php_poll = new poll();
/* the first poll */
echo $php_poll->poll_process(1);
Cheers - subsitute the ( 1 ) for poll you would like to use..ie (2 )
|
Dave the moose |
|
02/06/2003 15:40:38
|
dante
Beginner
Joined: 28/05/2003 00:23:28
Messages: 5
Offline
|
Hi sorry made mistake here:
Hi try this:
<?php
/* Include this before your html code */
include "pollphp/db/poll_cookie.php"; ";.....mistake
?><html> <head>blah blah
</head>
<body>where you want to appear..
change to
<?php
/* Include this before your html code */
include "pollphp/db/poll_cookie.php";
?>
|
Dave the moose |
|
02/06/2003 15:46:49
|
caejun
Newbie
Joined: 02/06/2003 06:04:08
Messages: 4
Offline
|
nt
|
|
20/07/2003 08:42:42
|
Anonymous
|
easy. just rename the file index.html into index.php
that fixed problem for me.
|
|
|