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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.