条形码扫描仪结果重定向到新的PHP页面

I have a barcode scanner application . I want the barcode to be scanned on the android app itself but the result/barcode number to be redirect to a new php page. Anyone have any clue on how to do this? The code below is our coding for scanning the barcode:

public class CameraTestActivity extends Activity
 {
private Camera mCamera;
private CameraPreview mPreview;
private Handler autoFocusHandler;
URL url;


TextView scanText;
Button scanButton;

ImageScanner scanner;

private boolean barcodeScanned = false;
private boolean previewing = true;

static {
    System.loadLibrary("iconv");
} 

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_scan);

    setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);

    autoFocusHandler = new Handler();
    mCamera = getCameraInstance();

    /* Instance barcode scanner */
    scanner = new ImageScanner();
    scanner.setConfig(0, Config.X_DENSITY, 3);
    scanner.setConfig(0, Config.Y_DENSITY, 3);

    mPreview = new CameraPreview(this, mCamera, previewCb, autoFocusCB);
    FrameLayout preview = (FrameLayout)findViewById(R.id.cameraPreview);
    preview.addView(mPreview);

    scanText = (TextView)findViewById(R.id.scanText);

    scanButton = (Button)findViewById(R.id.ScanButton);

    scanButton.setOnClickListener(new OnClickListener() {
            public void onClick(View v) {
                if (barcodeScanned) {
                    barcodeScanned = false;
                    scanText.setText("Scanning...");
                    mCamera.setPreviewCallback(previewCb);
                    mCamera.startPreview();
                    previewing = true;
                    mCamera.autoFocus(autoFocusCB);
                    Intent viewIntent =
                            new Intent("android.intent.action.VIEW",
                                        Uri.parse("http://172.20.138.136/searchform.php"));
                            startActivity(viewIntent);
                }
            }
        });

}

public void postdata()
{

}

public void onPause() {
    super.onPause();
    releaseCamera();
}


/** A safe way to get an instance of the Camera object. */
public static Camera getCameraInstance(){
    Camera c = null;
    try {
        c = Camera.open();

This is our php code:

<html>
<body>
<form action="insertform.php" method="post">
 &nbsp; <input type="text" name="t1" /><br />
 <input type="submit" value="Search" />
</form>

</body>



 </html>

You can use this itself to open your page through intent:

 Intent i = new Intent(Intent.ACTION_VIEW, 
           Uri.parse("http://172.20.138.136/searchform.php"));
    startActivity(i);