I am new to ZennoPoster, so would like to ask for a small help.
I was creating a new project in Project Maker and got stuck at a maths captcha.
Its simple text like 5+3=
And then there's a box for the solution.
Can anyone help me how can i simple make it automated to add those digits and put their sum in the next box?
Is their any option so that I can simply select the text and sum it Up?
Thanks for the help.
EDIT:
I found this php script for adding numbers.
OR there's already an option in Project Maker to do so?
I was creating a new project in Project Maker and got stuck at a maths captcha.
Its simple text like 5+3=
And then there's a box for the solution.
Can anyone help me how can i simple make it automated to add those digits and put their sum in the next box?
Is their any option so that I can simply select the text and sum it Up?
Thanks for the help.
EDIT:
I found this php script for adding numbers.
Can I use this to solve those simple maths text captcha?<?php
echo "Please enter value 1 : ";
fscanf(STDIN, "%d\n", $value1); // reads number from STDIN standard input
echo "Please enter value 2 : ";
fscanf(STDIN, "%d\n", $value2);
echo "Answer : " .($value1 + $value2) . "\n";
?>
OR there's already an option in Project Maker to do so?