Difference between revisions of "Quick Reference for PHP"

From Free Knowledge Base- The DUCK Project: information for everyone
Jump to: navigation, search
(New page: == Redirect with PHP == <? header('Location: http://members.robotz.com/'); ?> Category:Computer Technology Category:Programming Category:PHP)
 
Line 1: Line 1:
 
== Redirect with PHP ==
 
== Redirect with PHP ==
 +
 +
See also: [[PHP Function Reference]]
  
 
  <?
 
  <?

Revision as of 14:10, 29 January 2014

Redirect with PHP

See also: PHP Function Reference

<?
  header('Location: http://members.robotz.com/');
?>