Re: HTML Image Embedding Issue Programming Web Development by Steve_89 It seems like the issue might be with the path to the image. Here are a few things to check: 1. **Relative Path**: Ensure that the path to your image is relative to the location of your HTML file. If your HTML file and the "images" folder are in the same directory, your current path should work. 2. **File Extension**: Make sure the … Re: HTML Navigation Menu Alignment Issue Programming Web Development by aundigital It looks like you're experiencing some trouble with your navigation menu. Based on the code you've provided, here are a few things to check: CSS Styling: Ensure that your styles.css file is correctly linked and that there are no errors in the styling code that could be affecting the alignment and appearance of the navigation links. List Item … Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner This one is becoming more perplexing. After adding in the PHPMailer coding, page would crash (e.g. blank white screen, HTML file that would display the screen doesn't even start at all, e.g. error in the 1st running PHP file). Adding the semi-colon at end of line 18 (in previously discussed code) did not work and funny thing is, the original coding… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim I checked my code and I only found 2 differences, the first is the 2 `use` commands before the require: use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\Exception; require 'includes/PHPMailer/src/Exception.php'; require 'includes/PHPMailer/src/PHPMailer.php'; require 'includes/PHPMailer/src/SMTP.php';… HTML Navigation Menu Alignment Issue Programming Web Development by khan zain "I'm working on a navigation menu for my HTML page, but it's not behaving as expected. The links aren't aligning properly, and the styling seems a bit wonky. I've included the code below. Can anyone help me figure out what's causing this navigation headache? This my Code <!DOCTYPE html> <html lang="&… HTML Image Embedding Issue Programming Web Development by khan zain "I'm attempting to embed an image in my HTML page, but it's not showing up. I've checked the file path, and it seems correct. Below is the code I'm using. Any insights on why the image isn't displaying as expected?"" <!DOCTYPE html> <html lang=""en""> <head> <meta… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner More problems. I incorporated the coding Biiim provided. Before any changes, after submission, would display the correct (yellow) screen. After code changed, not only will still not send email but screen turns blank white. URL provider, IONOS, told me that the Host is smtp.ionos.com and the Username and password are for an email address associated … Re: Seeking Help for Creating a Circle Generator Tool Programming Game Development by jackwells Here is a code i created <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Minecraft Circle Generator</title> <link rel=&… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim In your code where you write `mail($to,$subject,$message,$headers);` if you want to get error messages or "do something if it fails" you need to alter it a bit to something like: if(mail($to,$subject,$message,$headers)){ //if successful do something }else{ //if error do something else } //or… Re: Redirect non-www to www cons? Digital Media Digital Marketing Search Engine Strategies by Read a Book > Make sure that every page has the correct link rel=canonical Where should i place this tag ? > Ensure there are no internal links anywhere in your site that use this wrong version of the URL. I ensured and updated the search.php file which was redirecting to `non-www` version, now is fine. > Ideally, implement 301 … Re: str_replace woes Programming Web Development by almostbob … bytes) to represent them makes it backwards compatible with non-utf8 applications, which display garbage, but ascii garbage and dont crash… Re: str_replace woes Programming Web Development by almostbob UTF-8 is the first time I have seen 'new' stuff that didnt actively kill 'old' stuff its a good idea, it works it must have been an accident Re: fwrite .txt file pound sign encoding error £ Programming Web Development by almostbob UTF-8 encoding html charset the GBP pound sign gets 2 bytes in utf8 utf16 its not one of the lower 127 ascii codes that gets directly translated the page that reads the stored data file needs to be charset UTF-8, logically aware of the answer, my phone does not have my stored links on it so I cant post the relevant link (anti boredom browsing) Re: problem with xml and speech recognition Programming Software Development by punchinello UTF-8 worked. Thank you very much! Re: utf-8 encoding issues with strtolower Programming Web Development by mschroeder Well both strtolower and strtoupper are not UTF-8 compatible but I believe you already knew this. [url]http://www.phpwact.org/php/i18n/utf-8[/url] is a great resource for the compatability of utf-8 with the current string functions in php. I get the same results as you when I put my own test together using a recommended internationalization … Re: utf-8 encoding issues with strtolower Programming Web Development by mschroeder …'ve been using the chart from [url]http://www.utf8-chartable.de/unicode-utf8-table.pl[/url] to get UTF-8 characters… Re: utf-8 encoding issues with strtolower Programming Web Development by diafol Yes, I've been messing with the MB functions myself lately. I forgot to include the all important "UTF-8" parameter, so that's why I was still getting the horrible question mark. I have to say, UTF-8 + MB will do me fine for now. I can't believe that I've never run into the strtolower issue before - although I should have read the blurb … utf-8 encoding issues with strtolower Programming Web Development by diafol Hi all. Got a bit of a problem with this. Here's my code: [CODE]<?php header('Content-Type: text/html; charset=utf-8'); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head>… UTF-8 dying in include file Programming Web Development by diafol Hi all. Having more problems with utf-8 and Iñtërnâtiônàlizætiøn. I'm running php (xampp) on Windows 7 (but it's also happening on my remote Linux site) and keep on getting nonsense with non-ASCII chars when they come from include files, e.g. INCLUDE FILE: 'inc.php' [CODE]<?php $simple = "Iñtërnâtiônàlizætiøn"; ?>[/CODE]… Re: UTF-8 dying in include file Programming Web Development by diafol Hmmm. I'll have a look. Thanks for the quick reply. //EDIT I' think I've cracked it, the original include file was an ANSI, but I changed it to a UTF-8 without BOM. Unfortunately, I didn't check the state of the non-ansi chars as I was using a different editor. Blast. What a fool. I'm gonna do some more digging, but I bet that's the problem. //… Converting from latin1 to UTF-8 Programming Databases by Dani Sooo ... I learned during my schema migration that our webpages use UTF-8 encoding but our MySQL database (all InnoDB tables) uses latin1. After finally running some utf8_decode() php magic, I was finally able to successfully get all posts to display correctly again. However, now that I realize there's an issue, I want to do something about it … Convert to UTF-8 Programming Web Development by Dani …. // Convert ISO-8559-1 characters (and MS Word characters) to UTF8 $string = iconv('UTF-8', 'ISO-8859-1//TRANSLIT', $string); // Run… Re: Converting from latin1 to UTF-8 Programming Databases by smantscheff You will definitively have less problems if all your stuff - database, scripts, html templates etc. - are in utf-8. If this is a hassle with phpMyAdmin, use a fine database editor like Navicat or HeidiSQL. If your site has the proper "encoding" attributes in header and meta taga, then the search engines will correctly interpret the … Stuck with UTF-8 using API Programming Software Development by smandape … "application/xml; charset=UTF-8". I used 'use utf8' but doesn't seem to work. The line it gets… Re: Stuck with UTF-8 using API Programming Software Development by d5e5 …; doesn't look like an error message to me. The utf8 module allows you to use accented characters as values or… change ANSI files encoding to utf-8 Programming Software Development by shandoosheri Hi i have a lot of ANSI encoded files in the same folder with different extensions and i want to convert all this files into utf-8 encoded files so how can i do this in c# [I][B]Thank you [/B][/I] Re: change ANSI files encoding to utf-8 Programming Software Development by Alexpap … = new StreamReader(infile); StreamWriter sw = new StreamWriter(outfile, false, Encoding.UTF8); sw.WriteLine(sr.ReadToEnd); sw.Close(); sr.Close(); [/CODE] Hope… Re: UTF-8 Programming Databases by colweb … in utf-8 and [CODE]if (!$db->set_charset("utf8")) { echo "<p>Error: ".$db->… utf-8 Programming Web Development by alchiasp Hi, I am wodering how to store and retrieve czech, or other utf-8 related language, characters using IIS 5.0 and SQL server 2000; I try to explain: at the beginning I was using the 1252 default codepage (with no charset specified) and some character was immediately changed when posting toward a new page and, consequently, into the … UTF-8 to database Programming Web Development by xxmp Hello I have a form that a user insert some input form accept-charset='UTF-8' action="addcommentcheck.jsp" method="post" id="addcommentid"> ... </form> and at addcommentcheck.jsp i do request.setCharacterEncoding("UTF-8"); But when i try to insert it to database the only thing that i…