|
Posted by Steve on 01/21/06 22:39
> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
> "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
>
> <?php
> $debug=0;
> ini_set('display_errors', 1);
> ini_set('safe_mode', 'FALSE');
>
> error_reporting(E_ALL & ~E_NOTICE);
> ?>
>
> <?php
> $zipRaw = $_GET['zipRaw_name'];
> if ( !empty($zipRaw) ) {
>
> $valid = $zValid = true; //checkLength($zipRaw, 1, 5);
>
> if ($valid) {
> header( "Location:http://www.yahoo.com");
> exit;
> } else {
> echo( "<html><head></head><body> zipRaw = ");
> echo( $zipRaw );
> echo( " <br></body>" );
> }
> }
> ?>
>
> -------- or print() in place of echo()
>
> verbatim, same results. The Browser shows
>
>
> zipRaw = "); echo( $zipRaw ); echo( "
> " ); } } ?>
PLEASE confirm that (1) the document has a .php extension, and (2) you
are requesting it from a PHP enabled web server.
I mean, clueless is one thing but...
---
Steve
[Back to original message]
|