You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(NOTE: My code is in a separate repo called HW5-AJAX: https://github.com/buhr3940/HW5-AJAX) When I try to search for a name on the search.php page, I get lines 11-14 from searchresults.php showing up in my browser.
Used the dev tools in Firefox and got this longwinded message:
"The character encoding of the HTML document was not declared. The document will render with garbled text in some browser configurations if the document contains characters from outside the US-ASCII range. The character encoding of the page must be declared in the document or in the transfer protocol. searchresults.php"
I added "meta charset="UTF-8" to the head of both search and searchresults.php. But I still get the same error message. Any ideas as to what can resolve this?
The text was updated successfully, but these errors were encountered:
When I used the developer tools now, it just tells me it has to do with element { inline }. It does not call out a specific line of code. It highlights most of the code in my searchresults.php in red including:
'//Not highlighting the rest of this line
//not before //Not highlighting the rest of the line
(NOTE: My code is in a separate repo called HW5-AJAX: https://github.com/buhr3940/HW5-AJAX) When I try to search for a name on the search.php page, I get lines 11-14 from searchresults.php showing up in my browser.
'.$row['name']."-".$row['username']; echo""; } mysql_close($con); ?>
Used the dev tools in Firefox and got this longwinded message:
"The character encoding of the HTML document was not declared. The document will render with garbled text in some browser configurations if the document contains characters from outside the US-ASCII range. The character encoding of the page must be declared in the document or in the transfer protocol. searchresults.php"
I added "meta charset="UTF-8" to the head of both search and searchresults.php. But I still get the same error message. Any ideas as to what can resolve this?
The text was updated successfully, but these errors were encountered: