Web Developer Notes - Page 9
Configuring HTTPS for Nginx
Last updated: 21.02.2026
Views: 354
HTTPS stands for Hypertext Transfer Protocol Secure, and it is the secure version of HTTP, the protocol used for communication between your web browser and a website. HTTPS encrypts the data being sent and received, ensuring that the communication is secure and private.
Some time ago I used VPS for some of my projects. I needed to run PHP and NodeJS on the server and set up domains for these p...
jQuery Accordion Plugin
Last updated: 10.10.2025
Views: 277
An accordion is often used on websites. This element is popular and convenient at the same time. An accordion helps to structure content and save space. In my work, I often used jQuery (and sometimes use it now). And with the help of this library, I wrote an accordion plugin for use in different projects. The plugin is based on the slideToggle() method. Maybe this plugin will also be useful to som...
Simple JavaScript Clock
Last updated: 02.04.2026
Views: 345
There are many examples of implementing a clock using JavaScript, and while the approaches may vary slightly, most of them follow a similar idea. Typically, such functionality is built using timing functions like setTimeout or setInterval, which allow the interface to update the displayed time at regular intervals.
Even though the logic behind a simple clock is not very complex, it is a great p...
jQuery Tabs Plugin
Last updated: 10.10.2025
Views: 272
Tabs are a fairly common element. There are various implementations of this element on the Internet. But often the tabs are overloaded with code filled with effects that are unlikely to be needed in ordinary tasks. Therefore, it was decided to write simple tabs, so to speak, "for myself".
This plugin was written a long time ago and I used it in my work. jQuery is not considered a modern solutio...
How to Send HTML Form Data to Email Using PHP
Last updated: 21.02.2026
Views: 256
Sending a form to email is an important and common way of communicating with a web resource user. Let's write a simple form for sending data to email using the PHP mail() function. Our form will also write data to a file on the server. The code is not tied to any CMS and can be used anywhere. It is important that the mail() function is enabled on your hosting.
[php]
<?php
if(isset($_POST[...