Dead Internet Theory: Is the Web Dying? Community Center by Johannes C. … AI pieces and should not be featured on the first page of Google under any circumstances. If your experiences differ, please… Please review DaniWeb :) Community Center Meta DaniWeb by Dani If you love DaniWeb, or even if you don't, it would be much appreciated if you could [review us on Google](https://g.page/r/CSyiHReUFoTLEAI/review). Much thanks!! Display specific html tag on specific pages Programming Web Development by ianhaneybs I want to display different html tags on the php page they are visiting, for example on the homepage and the …computer shop basildon page I want the html tag `<section class="testimonal… so far and it works for the computer shop basildon page but I'm unsure how to add the homepage into… Re: Display specific html tag on specific pages Programming Web Development by Dani … doesn't look so messy: <?php // Retrieve the current page $currentpage = $_SERVER['REQUEST_URI']; // Most pages have this CSS class $class… Re: Do email clients respect CSP? Programming Web Development by toneewa … domain name and not blank. I also found another useful page on [hotlinking](https://securityboulevard.com/2022/10/modern-and-robust… Re: Display specific html tag on specific pages Programming Web Development by ianhaneybs Just got it working with the following code <?php $currentpage = $_SERVER['REQUEST_URI']; if($currentpage=="/" || $currentpage=="/index.php" || $currentpage=="/index" || $currentpage=="" || $currentpage=="/computer-shop-basildon.php" || $currentpage=="/… Re: Display specific html tag on specific pages Programming Web Development by ianhaneybs Thank you so much for the code Dani, that does look a lot cleaner and better than what I have Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner Today is a good day. The problem has been solved. Problem was anti-spoofing stuff being added to my email server sometime in February. The clue that was found during testing was I had by chance entered an email address ending in @(one of domains that I own), (not even a real email address) and form emailed successfully. And by changing only 1 line … Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani You only need to use htmlspecialchars() if the text appears on a website or an HTML email. I’m not sure if you need it if you’re sending plaintext emails. Re: How to get organic traffic in a website? Digital Media Digital Marketing Search Engine Strategies by beredis Ensure your content is high-quality, relevant, and optimized for search engines. This includes using the right keywords, updating outdated information, and creating content that matches user intent. Re: How to get organic traffic in a website? Digital Media Digital Marketing Search Engine Strategies by m2host Use SEO and social media marketing techniques. pass data to another asp page Programming Software Development by Fergus_1 ok so i have a page with a gridview on it and it displays rows from … i would like to send the our_ref attribute to the page itself aswell as the url and use it make further… Re: Video is not the main content of the page Digital Media Digital Marketing Search Engine Strategies by Dani Yes, if the page does not contain video content, then remove `itemscope itemtype="http://schema.org/VideoObject"` I'm so sorry for not responding sooner. I just saw your post now. Re: Video is not the main content of the page Digital Media Digital Marketing Search Engine Strategies by Read a Book BUMP. Anyone can help with this issue ? :/ Re: Video is not the main content of the page Digital Media Digital Marketing Search Engine Strategies by Dani I’ll take a look at this tomorrow. I’m currently in bed :) Re: Video is not the main content of the page Digital Media Digital Marketing Search Engine Strategies by Dani You have the itemtype set to a VideoObject but, as you point out, only sometimes is there actually an .mp4 file. The rest of the time, it's a static image such as a png, jpg, or jpeg. Google probably doesn't trust your meta tags since they are inaccurate half the time. Re: Video is not the main content of the page Digital Media Digital Marketing Search Engine Strategies by Read a Book But i am generating the JSON code dynamically. If there is no video than i hide the VideoObject tag with if statement. Should i just remove the `itemscope itemtype="http://schema.org/VideoObject"` Re: Do backlinks to disallowed URLs help the domain overall? Digital Media Digital Marketing Search Engine Strategies by Dani …disallowed via robots.txt, then Googlebot never crawls the page to discover what is or is not in any meta… tags in the page's HTML. Regardless, the `<meta name="robots…it is using those signals to rank those URLs in page results without title and description ? Do you see them…that Google has no clue what is on the page. Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … @gmail.com then the only website that an online submission page would send submitted info from would be gmail.com. Continuing… email address ending in the domain that the online submission page is on. For 13 years mine did after all... Re: Do backlinks to disallowed URLs help the domain overall? Digital Media Digital Marketing Search Engine Strategies by AussieWebmaster The title and description can be pulled by Google without one being there - so same is done when blocked from crawling - if there is a link on the site to the page that does not have a no index no follow wrapped around the link will be how Google gets the page and ranks it. Google does not follow robots.txt instructions Re: How to get organic traffic in a website? Digital Media Digital Marketing Search Engine Strategies by AndyBeohar On-page SEO can be more beneficial. The following tips will definitely help you boost traffic. * Create high-quality, relevant content * Optimize for mobile devices * Engage in strategic link-building activities 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… 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… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … is becoming more perplexing. After adding in the PHPMailer coding, page would crash (e.g. blank white screen, HTML file that… Re: HTML Image Embedding Issue Programming Web Development by Steve_89 … still isn't displaying, you might want to inspect the page using your browser's developer tools (usually accessed by pressing… Do backlinks to disallowed URLs help the domain overall? Digital Media Digital Marketing Search Engine Strategies by Dani … rank the URL in the search results (albeit with no page title or description). My question, however, is whether the domain… Re: Do backlinks to disallowed URLs help the domain overall? Digital Media Digital Marketing Search Engine Strategies by jkon … it is using those signals to rank those URLs in page results without title and description ? Do you see them in… Re: Backlink Indexing issue Digital Media Digital Marketing Search Engine Strategies by Dani … website’s robots.txt file. Additionally, make sure that the page on your own website the backlink points to doesn’t… Re: Online subission forms not sending emails of submitted info Programming Web Development by Chris_103 It seems like you're experiencing issues with PHP-based email functionality, where submissions are not triggering emails to be sent. Let's dive into the code snippet you provided and see if we can identify any potential issues or improvements. 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';…