shane18 Posted December 24, 2009 Share Posted December 24, 2009 onclick="window.location=\'index.php?Page=Profile&PROFILE_ID='.$USER_ID.'\'"> what im echoing above causes a error in the html 4.1 strict validator... how can i change it to still work and not cause the error? Line 42, Column 1302: cannot generate system identifier for general entity "PROFILE_ID" (QUOTE IS FROM http://validator.w3.org/) Quote Link to comment Share on other sites More sharing options...
pneudralics Posted December 24, 2009 Share Posted December 24, 2009 Try something like this: onclick="window.location=index.php?Page=Profile&PROFILE_ID=<?php echo $USER_ID ?>"> Quote Link to comment Share on other sites More sharing options...
shane18 Posted December 24, 2009 Author Share Posted December 24, 2009 its the &PROFILE_ID causing the html error... its being considered a entity Quote Link to comment Share on other sites More sharing options...
oni-kun Posted December 24, 2009 Share Posted December 24, 2009 its the &PROFILE_ID causing the html error... its being considered a entity Then this is an HTML question, Not PHP. Always use & instead of '&'. If you're looking for a PHP function, use url_encode $string = 'onclick="window.location=\'index.php?'.urlencode('Page=Profile&PROFILE_ID='.$USER_ID.'\'">'); Quote Link to comment Share on other sites More sharing options...
trq Posted December 24, 2009 Share Posted December 24, 2009 onclick="window.location=\'index.php?Page=Profile&PROFILE_ID='.$USER_ID.'\'"> Quote Link to comment Share on other sites More sharing options...
shane18 Posted December 24, 2009 Author Share Posted December 24, 2009 thanks for helping me fix the problem, and yes I understand this is html issue but it was caused by a php thing... Quote Link to comment Share on other sites More sharing options...
trq Posted December 24, 2009 Share Posted December 24, 2009 thanks for helping me fix the problem, and yes I understand this is html issue but it was caused by a php thing... Its nothing to do with php. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.