Just a quick note that'll help:

In the URL, the special characters (such as ampersands, question marks, etc) need to be converted to html character entities. You can find entity codes from:
http://www.ascii.cl/htmlcodes.htm

For example:
ampersand can be & or &
question mark is ?

Therefore your code is:
$myurl = 'testdate.php#63;houseID={$housename}&changeID={$changeover}';

You can also do this automatically by using the PHP function htmlspecialchars() [1]
[1] <http://php.net/manual/en/function.htmlspecialchars.php>

Tim

designer wrote:

$myurl="testdate.php#63;houseID=$housename&#38;changeID=$changeover";




******************************************************
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
******************************************************

Reply via email to