Skip to content

Tag: php

How to prevent SQL injection in Question2Answer?

I want to prevent SQL injection in Question2Answer. This is how I store data in MySQL via HTML form. I know it’s a security risk. Examples – OR and SQL query is – How should I post data in the latest PHP 7 and above version? I think escaping strings is deprecated or outdated. Answer Based on…

Sort MySQL query in PHP

I’m trying to sort different users ‘points’ by descending order (highest first). But at the moment the query is being returned in order of the user’s ID (order they appear in the database). I’m not sure what is wrong with my code? The user can be in multiple leagues, so it first …

How to update multiple records in Codeigniter

In above code snippet first function is declared in controller and second function is declared in model. I want to update owner for multiple rows having ids in $astrep. Can anyone please help me? Answer You can use whereIn() or orWhereIn() methods from query builder class. Refer https://codeigniter4.github.io…

How to get Table field names at top of result array

Here is my Sample table: Here is My Query: Result for above query is: I need to get the field names in the first element of the array. Expected result array is: How can I modify the Query to get this result? Thanks in advance… Answer Display issues should generally be dealt with in application code, not…

Update row if exists or insert

I’m working on a web based PHP form that’s currently connect to an Oracle database. I’m trying to get the functionality working so that after a user submits the form it’ll check if a row exists based on the Job Number, if it does then update, otherwise insert the values. It’s bri…