Doesn't look like the transaction ID is part of the response, it is probably saved to a session before the response comes back.
on the success page, you can add the following code to dump the session contents and find the session that contains the transaction ID:
<pre><?php @session_start(); var_dump($_SESSION); ?></pre>