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 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';… 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 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: 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: 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. //… 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… UTF-8 and PDF Programming Web Development by om1d_h Hi, I need to generate a PDF report from my MySql. The problem appears when we want to write in Persian. The PDFlib appearently doesn't support UTF-8. I also checed UFPDF. It neither work well. Any advice? I use: PHP Version 4.3.7 mysql: Client API version 3.23.49 UTF-8 causing problems with IE6 over SSL Programming Web Development by justinman I recently discovered that IE6 will display a blank screen if you are in SSL and you click on a link that points to a UTF-8 page. However, if you refresh the page will be displayed. However, even if the page contains a link to itself, clicking on the link again will render a blank page. Re: UTF-8 causing problems with IE6 over SSL Programming Web Development by digital-ether [QUOTE=justinman;643884]I recently discovered that IE6 will display a blank screen if you are in SSL and you click on a link that points to a UTF-8 page. However, if you refresh the page will be displayed. However, even if the page contains a link to itself, clicking on the link again will render a blank page.[/QUOTE] Thats pretty nasty. … UTF-8 in Dev-c++? Programming Software Development by Shmera Hi everybody! I would really appreciate any help on this. I have googled for an hour without a result. Few different hints but no one understandable enough. I want to use Latvian or UTF-8(Unicode) characters in Dev-C++ to input and output text from console. Can anybody give me a hint how to do this? Re: UTF-8 and PDF Programming Web Development by haggis-man I am also interested in UTF-8 support PDFlib Lite since I need to write Cyrillic text into a PDF. Any suggestions please? UTF-8 to ASCII Programming Software Development by wish4129 … the characters properly. I hav tried Encoding.ASCII.GetString(Encoding.UTF8.GetBytes()) but still it return wrong character when it's… UTF-8 Programming Databases by FreshGe Hello can you help me add utf-8 coding to this query $settings = dbarray(dbquery ("SELECT * FROM ".DB_SETTINGS )); it displayes whole mysql data echo $settings['maintenance_message']; echo $settings['data']; echo $settings['warn']; etc UTF-8 processing Programming Software Development by InnocentVamp Hello folks... I want to know how to enable an application (using Java) that it can understand Gujarati fonts? I want to store the Gujarati data and want to retrieve the data with understanding like the occurrence of a given word, replacing a given word with some other word and so on. I know that for this I have to process the UTF-8 code. … Utf 8 mysql Programming Databases by softDeveloper Hi all, I have Text in MySQL utf 8 and an iframe displaying this text, and the page content is utf8. Does anybody know why the iframe caret position doesn't match with MySQL position when there are line breaks, and how to fix it? Regards Re: Utf 8 mysql Programming Databases by softDeveloper Hi, I saw this article: [url]http://breckyunits.com/code/ansi_or_ascii_and_unicode_or_utf8_and_newlines[/url] It appears that MySQL considers '\r\n' and the iframe in JSP displays the linebreaks without '\r'. So I saved the file as UNIX EOL in Notepad++ and now it works. But both MySQL and jsp have everything in UTF-8. Re: Utf 8 mysql Programming Databases by smantscheff [QUOTE]But both MySQL and jsp have everything in UTF-8[/QUOTE] And is this a problem? Re: Utf 8 mysql Programming Databases by softDeveloper No, I want everything in UTF-8! The problem was '\r' that was messing up all the application