Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
html5
- Page 1
Re: How to show visa info based on country selection in a travel form?
Programming
Web Development
1 Day Ago
by groverharleen
Hello, please use developer tool while working on HTML/PHP with AJAX. in the console you can easily track what was the POST/GET request made to PHP file and what is the responses shared by PHP file. try debugging response accordingly or if still you face any trouble, please do share screen shot of Header / Request / Response Tabs. i'll …
Re: Delete unused MySQL indexes
Programming
Databases
4 Weeks Ago
by Dani
I already read that article, as well as related ones such as [this](https://dev.mysql.com/doc/refman/8.4/en/performance-schema-wait-tables.html) and [this](https://dev.mysql.com/doc/refman/8.4/en/performance-schema-event-tables.html) but it all went above my head and didn’t seem to directly answer my question. For example, when I currently run …
Re: Seeking Help for Creating a Circle Generator Tool
Programming
Game Development
2 Weeks Ago
by b_985
I’m using a Dell Latitude 3540 laptop and I’m a gamer who enjoys playing a variety of games. Recently, while playing Minecraft, I used several websites for building guidance. One of the tools I relied on was the Minecraft Circle Generator for creating accurate circles and shapes. However, I’ve run into an issue — the website isn’t opening at all…
Re: Remove Qemu/kvm snashots
Hardware and Software
Linux and Unix
3 Weeks Ago
by Salem
https://docs.redhat.com/en/documentation/red_hat_enterprise_linux/7/html/virtualization_deployment_and_administration_guide/sect-using_qemu_img-listing_creating_applying_and_deleting_a_snapshot#sect-Using_qemu_img-Listing_creating_applying_and_deleting_a_snapshot
Re: My php is showing wrong results of time difference
Programming
Web Development
2 Weeks Ago
by Dani
I am confused when you say the HTML time picker input box can be set to 20:00 for time in and 5:00 for time out, because `<input type="time" ...>` only allows the end-user to specify a time, not a time and date combination. Should it always be assumed that if the time out is earlier than the time in, that it is the next day? …
Re: Anti-Hotlinking Script for WP on Apache (.htaccess) - Linkspam Prevention
Programming
Web Development
3 Weeks Ago
by Dani
CDNs such as Cloudflare offer hotlink protection via a toggle switch you could enable. But, yeah, the primary benefit of hotlink protection is that a website doesn't upload images to *your* site, and then include them in their own site without having to pay for the bandwidth of hosting the images. Just make sure that if you turn on hotlink …
Can I Use AI to Build a Block Management Website for Ilford Clients?
Programming
Web Development
2 Weeks Ago
by kearawill
Hey developers 👋 I’m working on a new project for a client — a estate agency Ilford, and I’m wondering how much of this could be streamlined or even built with AI tools? The site needs standard features like: Property listings Service request forms (for tenants) Payment gateway Backend for property managers to update info …
Re: Can I Use AI to Build a Block Management Website for Ilford Clients?
Programming
Web Development
2 Weeks Ago
by trcooke
This feels like a solved problem. Have you done any research for existing "off the shelf" property sales / real estate website solutions? I would start there as it could save you and your client a whole bunch of time and money compared to building one yourself from scratch.
which language do i start leaning in 2025
Programming
Software Development
2 Months Ago
by silverrr_btc
i have currently learning html only but its so boring do all of you guys had same problem and tell me which language do i start with html, me and my friend have made a site on html with little css and and js (thegeekinsights) and its going fine. can you create this?
Re: which language do i start leaning in 2025
Programming
Software Development
1 Month Ago
by Dani
It depends what you’d like to build. If a simple website, you can use HTML and CSS. Want some interactivity? Add JavaScript. Want to create more complex dynamic websites? You will need a backend language such as PHP and a database such as MySQL. I see you also tagged this topic c++. C++ is a popular language used for non-web related …
Re: which language do i start leaning in 2025
Programming
Software Development
1 Month Ago
by rproffitt
Think of a toolbox. Why buy tools you aren't going to use? ## Yup, everyone needs a 10 meter wide hole saw.
Re: which language do i start leaning in 2025
Programming
Software Development
1 Month Ago
by retseaz77
Great question! In 2025, some of the most practical and trending languages to learn include: Spanish – widely spoken and super useful for travel and business Mandarin Chinese – huge global economy advantage French – still very relevant in international diplomacy and culture Python (if you meant programming) – still one of the top …
Re: How to speed up my (WordPress) website?
Digital Media
Digital Marketing
1 Month Ago
by silverrr_btc
i have currently learning html only but its so boring do all of you guys had same problem and tell me which language do i start with html, me and my friend have made a site on html with little css and and js and its going fine. can you create this?
Re: Cannot run exe from asp.net
Programming
Web Development
1 Month Ago
by lennyli
Why does the following code dont run and launch the exe I specify (eg, notepad.exe, or ribbons.scr)? <%@ Language="VBScript" %> <!DOCTYPE html> <html> <Body> <% Dim objShell Dim command Dim result ' Path to the executable command = "C:\…
Re: Need currency pound symbol before amount calculation
Programming
Web Development
2 Months Ago
by Biiim
Since Dani did the best standard-correct answer I will do the botch-job answer: $('table#list tfoot .grand-total').text('£'+parseFloat(grand_total).toLocaleString('en-gb', {style:'decimal',maximumFractionDigit:2})); $('[name="amount"]').val('£'+parseFloat(grand_total)); may also want to use £ to display in …
Re: What are some top-rated Bootstrap admin templates that not rely on Tailwind
Programming
Web Development
2 Months Ago
by Dani
Hello, DaniWeb actually uses Bootstrap, but I don’t use any preexisting templates. How much CSS experience do you have? Are you experienced with creating HTML code that uses css classes to piece together something unique? Bootstrap also has its own template store, if I recall correctly. Also, Tailwind is a competitor to Bootstrap, so I’m …
Re: Cannot run exe from asp.net
Programming
Web Development
1 Month Ago
by lennyli
> I see pritaeas has answered so I'll move to the next stage of the discussion which is to ask what you need in your web site. > > For example there is an "online notepad" which does some basic notepad work. And there are many screensavers that run from a webpage with an example at whitescreen.online . > > You can …
Re: Cannot run exe from asp.net
Programming
Web Development
1 Month Ago
by Neil_brown001
Why your approach isn’t working What you're trying to do is mostly blocked by modern security rules — for good reasons. Here's the breakdown: Running a .exe on the server You can technically make the server launch an .exe file like Notepad, but: It will run in the background on the server, not visibly on the desktop. It needs special …
Re: Cannot run exe from asp.net
Programming
Web Development
1 Month Ago
by lennyli
> Why your approach isn’t working > What you're trying to do is mostly blocked by modern security rules — for good reasons. Here's the breakdown: > > Running a .exe on the server > You can technically make the server launch an .exe file like Notepad, but: > > It will run in the background on the server, not visibly on…
Re: Custom font on Cloudflare error page
Programming
Web Development
1 Month Ago
by Dani
Hello Dwight, I had already checked out that link, but from what I can gather, Cloudflare does not consider individual resources (such as fonts, images, etc.) as "assets". My understanding is than an asset is the entire HTML file used to generate the page, complete with inline, base64 encoded resources.
Re: Fujitsu Windows Server 2019 Servers Rebooting at 11pm every day
Hardware and Software
Microsoft Windows
1 Month Ago
by Dani
> But programming basics are still something people need help with, and the basics have not changed appreciably over my career. They sure have changed appreciably during *my* career! But maybe that's because my career is in web development, and the web, and the technologies that power the web, have changed *a lot* over the past 25 years. Heck…
Re: Delete unused MySQL indexes
Programming
Databases
4 Weeks Ago
by Reverend Jim
See [performance-schema-consumer-filtering](https://dev.mysql.com/doc/refman/8.4/en/performance-schema-consumer-filtering.html)
Re: Are SaaS & Cloud Computing Interchangeable Terms?
Community Center
2 Months Ago
by peol
Cloud computing and SaaS (Software as a Service) are not interchangeable terms. Cloud computing includes IaaS, PaaS, and SaaS services that provide computing resources over the Internet. Essentially, SaaS is a subset of cloud computing where users access software applications online without managing infrastructure.
Re: Justice Department Offers Grants Against Internet Predators
Digital Media
Digital Marketing
1 Month Ago
by JackRyan248
> Despite a study earlier this year[/URL] that the fears of Internet predation against kids were overblown, the U.S. Department of Justice is $50 million through the American Recovery and Reinvestment Act of 2009, commonly known as the stimulus program, for Internet Crimes Against Children (ICAC) program initiatives. > > The programs …
Best Ways to Print a High-Quality Book Cover
Digital Media
UI / UX Design
2 Months Ago
by Zachary_6
print a book cover is a crucial step in the publishing process, whether you’re self-publishing or working with a print-on-demand service. The right paper type, finish (glossy vs. matte), and resolution can make a huge difference in the final product. What printing services do you recommend—KDP, IngramSpark, or local print shops? How do you ensure …
Re: Best Ways to Print a High-Quality Book Cover
Digital Media
UI / UX Design
2 Months Ago
by rproffitt
"Never judge a book by its cover." - Unknown. And book sales are way way down. But here's the book I recently bought. It's title is: ***"The Subtle Art of Resistance: Lessons from Cats for Surviving Fascism"*** which is the problem of today. PDFs and E-books are where it's at.
Re: The Impact of User Research on UX Design
Digital Media
UI / UX Design
1 Month Ago
by john_111
I once visited a website where there were 20 rows, each composed of 20 identical small white squares (about the size of this --> HH ), with a tiny arrow in the bottom quarter corner to indicate they were links. But no text anywhere. Can you imagine how hard it would be to remember which button took you to which page, several days later? This…
Re: The Impact of User Research on UX Design
Digital Media
UI / UX Design
1 Month Ago
by Reverend Jim
Read The Essentials of User Interface Design by Alan Cooper.
Has CSS Grid completely replaced Flexbox in your projects? Why or why not?
Programming
Web Development
1 Month Ago
by KamalDeepPareek
Please answer
Where Can I Find Test Data (Names, Emails, etc.) for My Testing?
Programming
Web Development
2 Months Ago
by jamesalery
Hi everyone, I’m just starting out with testing and I need to generate some test data for things like names, birthdays, emails, and other basic information. I’m looking for web-based resources or tools that provide random test data for use in my testing. like i used this *<Promotional link snipped>* for generating birthdays. but i don't …
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC