search
  • Sign In
  • Sign Up
Password reset successful

Follow the proiects vou are interested in andi aet the latestnews about them taster

P粉421119778

P粉421119778

Follow
student

Follow 0
fans 0
integral 0
PHP some $_POST values missing but are present in php://input

I have a very big html form (containing table with rows, which contain multiple inputs), which i need to submit to PHP script via POST request. The problem is some values don't come

2026-01-30 13:22:10Ask
PHP
How to handle configuration in Go [closed]

What is the preferred way to handle configuration parameters for a Go program (the kind of stuff one might use properties files or ini files for, in other con

2026-01-23 13:43:16Ask
Python
Script to save varbinary data to disk

I have some varbinary data stored in a table in MS Sql Server 2005. Does anyone have SQL code that takes a query as input (lets say the query guarantees that a single column of varb

2026-01-10 15:22:43Ask
MySQL
When should I use a struct rather than a class in C#?

When should you use struct and not class in C#? My conceptual model is that structs are used in times when the item is merely a collection of value types. A way to logically hold th

2025-12-26 09:22:15Ask
C++
Looking for an efficient way to handle a large number of repeated If statement checks

When I'm trying to create a search tool for a database I created for my undergraduate thesis, I need to do a lot of checking of user-entered values ​​and generate and execute appropriate MySQL queries based on those values. An example is as follows: HTML code (partofthewholetable)<trid="tablerow"class=""><thid="selectth"><selectclass=&

2024-04-03 19:20:08Ask
PHP
Problem starting MySQL in XAMPP control panel

Unfortunately, I'm trying to start MySQL in the XAMPP control panel. When I try to get it working I get the following output: 13:28:19[mysql]Error:MySQLshutdownunexpectedly.13:28:19[mysql]Thismaybeduetoablockedport,missingdependencies,13:28:19[mysql]improperprivileges,acrash,orash

2024-03-31 14:48:47Ask
MySQL
Interpret image coordinates submitted for animated image elements in a form

I want to capture the X:Y values ​​indicating where the user clicked on an animated image by checking the php$_POST array. The problem is that while I can get the input submission information on the static image, I can't seem to get any values ​​from the animated image. Here is the complete HTML page and form demonstrating this behavior: <!doctypehtml><html><head><metacharset="utf-8"><title>Gunf

2024-02-26 22:34:14Ask
PHP
How to log form validation using zod and react-hook-form like in this svelte tutorial?

I try to follow the zod verification tutorial in svelte. I have no experience with this (svelte) so I'm wondering how can I replicate this code functionality in a simple React/next app? I'm stuck on what ({request}) will be/will be passed to the async function. Also, should this be done inside useEffect or only called on form submission? exportconstactions={default:async({request})=>{constformData=O

2024-01-28 23:16:11Ask
React
The title is rewritten as: CSS variables for adding inline styles in Vue

I use css variables in the component and set the width of the div based on the data calculated in setup() setup(props){constprogressBar=PositionService.getProgressBar(props.position);constprogressWidth=`${progressBar}%`;... return{...,progressWidth};} Then I use this variable as a css variable. &l

2023-12-31 12:51:41Ask
Vue.js
Server error: File /src/main.jsx not found (resolving id: /src/main.jsx)

I type "npmrundev" to run the app but I get this error: "Unable to load url /src/main.jsx (resolved id: /src/main.jsx). Does the file exist?" and the page is white. Code written in main.jsx: importReactfrom'react'importReactDOMfrom'react-dom/client'importAppfrom'./App'import'./index.css

2023-11-22 20:07:28Ask
React