Javascript PHP1 Min Read CodexonSeptember 22, 2025 How to create Password Strength checker in jQuery Create password strength checker and its very important for your website to have some password checking on signup pages to force your users to…
PHP2 Min Read CodexonSeptember 21, 2025 How to Create SEO Optimized URLs from String in PHP Introduction SEO-friendly URLs play a big role in improving search engine rankings and user experience. Instead of long messy URLs like: You…
PHP Wordpress2 Min Read CodexonSeptember 19, 2025 How to Build an SEO-Friendly FAQ System in WordPress (Step-by-Step) Recently, I worked with a client who is a professional consultant in her field. She wanted me to create a Q&A system — basically a…
PHP2 Min Read CodexonSeptember 18, 2025 Issue: cURL requests (used for DB/API communication) stopped working After you installed a new SSL certificate on AWS, your PHP cURL requests (used for DB/API communication) stopped working. This usually happens…
PHP Wordpress1 Min Read CodexonSeptember 17, 2025 Contact Form 7 inquiries go Email and WhatsApp automatically Same time, the details are sent automatically to your WhatsApp using the WhatsApp Cloud API. Step 1: Create Contact Form 7 Form Add a new CF7…
PHP Wordpress1 Min Read CodexonSeptember 16, 2025 Enquiry sent automatically to WhatsApp Someone submits the inquiry form on your WordPress site, the inquiry details should be sent automatically to your WhatsApp number (not just…
PHP Wordpress1 Min Read CodexonSeptember 15, 2025 Gemini chatbot : create for WordPress Plugin Let’s create Gemini chatbot into WordPress so you can use it anywhere on your site via a shortcode (e.g., [gemini_chatbot]). Step 1: Create a…
Javascript PHP1 Min Read CodexonSeptember 14, 2025 full interactive chatbot using PHP (backend) + HTML/CSS + JavaScript (frontend) with the Gemini API. Step 1: Backend (chatbot.php) This PHP script will receive the user’s message via AJAX, call Gemini API, and return the response. Step 2:…
PHP Wordpress2 Min Read CodexonSeptember 11, 2025 How to Enable WebP Support in WordPress Media Uploads WebP is a modern image format that provides smaller file sizes and faster loading compared to JPEG and PNG. Since WordPress 5.8, WebP is…
PHP2 Min Read CodexonSeptember 10, 2025 FPDF : Table with MultiCells The goal of this script is to show how to build a table from MultiCells. As MultiCells go to the next line after being output, the base idea…