(1) test.php?test_k ey=test_value
$_SERVER['SCRIPT_NAME'] returns /test/test.php
$_SERVER['REQUEST_URI'] returns /test/test.php?test_k ey=test+value
$_SERVER['QUERY_STRING'] returns test_key=test+v alue
(2) test.php?test_k ey=test_value#t est_internal_su blink
$_SERVER['SCRIPT_NAME'] returns /test/test.php
$_SERVER['REQUEST_URI'] returns /test/test.php?test_k ey=test+value
$_SERVER['QUERY_STRING'] returns test_key=test+v alue
Questions
(1) What do you call a sublink with the pound (#) symbol?
(2) How do I get to the #test_internal_ sublink?
--
Jim Carlock
$_SERVER['SCRIPT_NAME'] returns /test/test.php
$_SERVER['REQUEST_URI'] returns /test/test.php?test_k ey=test+value
$_SERVER['QUERY_STRING'] returns test_key=test+v alue
(2) test.php?test_k ey=test_value#t est_internal_su blink
$_SERVER['SCRIPT_NAME'] returns /test/test.php
$_SERVER['REQUEST_URI'] returns /test/test.php?test_k ey=test+value
$_SERVER['QUERY_STRING'] returns test_key=test+v alue
Questions
(1) What do you call a sublink with the pound (#) symbol?
(2) How do I get to the #test_internal_ sublink?
--
Jim Carlock
Comment