Jump to content

Miscellaneous Problem


shane18

Recommended Posts

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/)

Link to comment
https://forums.phpfreaks.com/topic/186200-miscellaneous-problem/
Share on other sites

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.'\'">');

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.