Jump to content

Including my poll script on other pages


centenial

Recommended Posts

I have just finished coding a poll script. Now I want the option to include it on other pages with a few lines of code. How would I go about doing this? I tried:

[code]<?php

include 'poll.php?id=1'; // Or 2, 3 etc. depending on the poll

?>[/code]

Where the poll.php is the file that generates the poll, allows the user to vote, and generates the results. But that gave me an error. I guess you can't have ?variable=somevalue strings when you include a file. Which I need to do, because the poll.php script needs an $id to generate the poll correctly. Any other ideas about how I would do this?

Also, one other problem - In the poll.php script there are a few links. Like:

[code]<a href="poll.php?method=results">Click Here to View the Results</a>[/code] If I include that on my other pages, the link will take them off to the poll.php page - How do I avoid doing that and make sure that all the functions stay on the page I include the script on?

Thanks,
Link to comment
https://forums.phpfreaks.com/topic/8966-including-my-poll-script-on-other-pages/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.