Skip to content

field matching & dynamic variable name

edited October 2014 in New Engines/Platforms
Hi Sven,

I need some help with field matching.
A form is like 

<tr>
<td><span><span style="color:#DYNAMIC_DATA;">QUESTION_ASKED</span>
 *:
</span>
</td>
<td>
<input class="post" type="text" style="#DYNAMIC_DATA" name="DYNAMIC_VARIABLE_NAME">
</td>
</tr>



NOTE: DYNAMIC_VARIABLE_NAME is like  profile_291298   ("profile_" is common to all dynamic variable)


1)
I tryed the following:
*QUESTION_ASKED*=1
Result: DYNAMIC_VARIABLE_NAME is NOT set to "1" 
Failed

2)
So, i tryed:
profile_*=1    <tr>*QUESTION_ASKED</span>;</tr>
Result: ALL   dynamic variable are set to "1".... not good
Failed

NOTE:
If i set :
profile_*=%question%
then "QUESTION_ASKED" is sent to the question_captcha_resolver...
So, it mean that SER knows the question.
So, how to make a match NOT based on variable name, BUT on question content ?






Comments

  • SvenSven www.GSA-Online.de

    *question_asked*= %question%

    Of course you might have to define something like...

    *What is*?* =%question%  

    *Where* =%question%

    ...

    as the question format changes.

Sign In or Register to comment.