JADASDesigner Posted November 13, 2008 Share Posted November 13, 2008 So I am using the poll from http://www.dbscripts.net/poll/ andit is perfect for what I need. I just want to configure it, so the values that people choose can also be clickable links. I.E. // Twelfth poll definition $p = new Poll; $p->question = "Does Race Matter when it comes to electing the president? "; // Question displayed to the user $p->returnToURL = "../main.php"; // Specify the URL to return to for this poll; may be relative or absolute $p->legend = "Cast Your Vote!"; // Form legend; leave empty for none $p->control_type =$CONTROL_RADIOBUTTONS; // Control type; $CONTROL_RADIOBUTTONS or $CONTROL_COMBOBOX $p->add_value("1", "Yes"); // Poll value ID and a display string $p->add_value("2", "No"); $VALID_POLLS["12"] = $p; // "12" is the poll ID could be turned into // Twelfth poll definition $p = new Poll; $p->question = "Does Race Matter when it comes to electing the president? "; // Question displayed to the user $p->returnToURL = "../main.php"; // Specify the URL to return to for this poll; may be relative or absolute $p->legend = "Cast Your Vote!"; // Form legend; leave empty for none $p->control_type =$CONTROL_RADIOBUTTONS; // Control type; $CONTROL_RADIOBUTTONS or $CONTROL_COMBOBOX $p->add_value("1", "<a href = "test.html">Yes</a>"); // Poll value ID and a display string$p->add_value("2", "No"); $VALID_POLLS["12"] = $p; // "12" is the poll ID When I try to do that, or do $p->add_value("1", "<a href = \"test.html\">Yes</a>"); // Poll value ID and a display string It prints the text verbatim, and doesn't make it code. Any ideas? Quote Link to comment Share on other sites More sharing options...
JADASDesigner Posted November 13, 2008 Author Share Posted November 13, 2008 BTW, I have to use this script, or something like it, because the hostring used by this person does not support mysql. They are cheap. Quote Link to comment Share on other sites More sharing options...
JADASDesigner Posted November 17, 2008 Author Share Posted November 17, 2008 Never mind. I just went with another script altogether... Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.