Hi
> Does any one know of sites that show equivalent PHP
> function for their ASP counterparts? I've tried
> searching google but I could not find any.
Don't know about this.
> How does one "redirect" in PHP. I've use
> combination of echo and META tags, but I'm not sure if
> this is the standard practice for PHP programmers.
I use:
header("Location: script.php"); // Before any output to the page or it will
give "headers already sent" error.
Check the docs.
Adrian Tineo