python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Set appName for PDO connections made via PHP
I use PDO in PHP to connect to a PostgreSQL database.
Does it allow setting the application name when making this connection?
try {
$conn = new PDO ( 'pgsql:host=' . $host . ';dbname=' . $dbname, ...
Tom
Votes: 0
Answers: 1
Problem in Insert Row to mysql remote Database
Good Morning I'm trying to insert a new record in a remote mysql database using PDO.
The code is pretty simple, but the behaviour of the script look very strange.
This is the code:
```
<?php
class ...
Salvatore Albano
Votes: 0
Answers: 0
Editing table data using php, PDO, and Ajax
I have a data table that displays the counter table in the database.
It has create and edit buttons, each linked to a pop-up modal. The create button works fine, but I'm having an issue with the edit ...
Kushani Sasiprabha
Votes: 0
Answers: 1