AccDevabojeonline.com·Apr 7, 2024HTML 107: Forms and Buttons in HTMLWe have come this far in HTML, just three more articles before we complete the HTML course. Let's take a refresher quiz before we proceed to today's lesson. Refresher quiz What is a table in HTML and how are they created?Tables are used to analyze da...DiscussFront End Development: The Accidental Developer Seriesforms
Modupe Ladelemodupeladele.hashnode.dev·Dec 9, 2023How To Echo Php Variable In An Html Textarea FormOne of the simple yet frustrating challenges you might face when working on core PHP is to echo a php variable inside an HTML textarea form attribute. How did I even come up with the problem? So I was working on the admin panel (dashboard) of a clien...Discuss·10 likesPHP
Anjanesh Lekshminarayananalpinejs.in·Nov 1, 2023Using ENTER for submit and SHIFT+ENTER for multi-line chatIf you've noticed on LinkedIn messaging when you chat with someone, you hit the ENTER key to send the message across and SHIFT+ENTER to enter a new line in the chat box. Most people aren't used to SHIFT+ENTER to go to the next line though. This is pr...Discuss·137 readsalpinejs
Ogunuyo Ogheneruemu Biruemu.hashnode.dev·Jul 5, 2023How to limit the number of characters entered in a textarea in an HTML form?In HTML, we can create form to accept and store information entered by the user with the help of various elements. These elements are also known as form elements for e.g.: textfield (textbox), radio buttons, checkboxes, dropdown or combo box, reset a...Discusstextarea
Ogunuyo Ogheneruemu Biruemu.hashnode.dev·Jun 29, 2023Insert multiple email to mysql using single textarea<?php if(isset($_POST['submit'])) { //$email = nl2br($_POST['email']); $email = explode("\r\n", $_POST['email']); foreach($email as $emails) { $query = mysql_query("INSERT INTO emails (email) VALUES ('$emails')"); if($que...DiscussPHP
Sriram Bsriram23.hashnode.dev·Dec 24, 2022Indentation With Tab Key In ReactHello World! The "Tabulator key" commonly known as the "Tab" key has multiple purposes, depending on where it is being used. For example, if we hit the tab key in a spreadsheet, it would move the cursor one cell rightwards. If we hit it in a text edi...Discuss·197 readsReact