-1

I'm working on a site that was was .asp and I'm converting it to PHP and one of the forms has this little bit of code in it...

response.write("<script language=javascript>")&vbnewline&vbnewline
response.write("var code = " &vInput& " ^ 2153893326;")&vbnewline&vbnewline
response.write("</script>")&vbnewline&vbnewline

The only part of this I don't understand is "^ 2153893326".

Any help would be appreciated.

Updated: It's wrapped in JS.

VSHoward
  • 567
  • 1
  • 4
  • 5

1 Answers1

0

^ (Bitwise XOR) Performs the XOR operation on each pair of bits. a XOR b yields 1 if a and b are different. The truth table for the XOR operation is:

VSHoward
  • 567
  • 1
  • 4
  • 5