Hello Perl-Pro's
I have a complete Polling script named RobPoll (http://rob.webking.com/) that works with a delimetered database. Only not with |, but with ``.
MY QUESTION IS:
Does the fact that perl executes anything between `` have effect on the scrip?
If Yes, will the script be faster if I replace alle `` with |, so that perl wont think it have to execute anything?
If so, will this:
print FILE "$r[$a]";
print FILE "``";
have to be this:
print FILE "$r[$a]";
print FILE "|";
And will this:
($num_questions,$nochop) = split(/``/,$lines[0]);
have to be this:
($num_questions,$nochop) = split(/\|/,$lines[0]);
Or does anyone know a better pollig script that can display the questions AND results as SSI? And that has a great admin-feature?
Please let me know?
Greeting,
Chris
I have a complete Polling script named RobPoll (http://rob.webking.com/) that works with a delimetered database. Only not with |, but with ``.
MY QUESTION IS:
Does the fact that perl executes anything between `` have effect on the scrip?
If Yes, will the script be faster if I replace alle `` with |, so that perl wont think it have to execute anything?
If so, will this:
Code:
print FILE "$r[$a]";
print FILE "``";
have to be this:
Code:
print FILE "$r[$a]";
print FILE "|";
And will this:
Code:
($num_questions,$nochop) = split(/``/,$lines[0]);
have to be this:
Code:
($num_questions,$nochop) = split(/\|/,$lines[0]);
Or does anyone know a better pollig script that can display the questions AND results as SSI? And that has a great admin-feature?
Please let me know?
Greeting,
Chris

