Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
connect
- Page 1
Hello Everyone - Newbie Here
Community Center
Say Hello!
2 Days Ago
by Ramesh sharama
…, and I’m always keen to learn, share knowledge, and
connect
with like-minded professionals from around the world. Looking forward…
Re: Hello Everyone - Newbie Here
Community Center
Say Hello!
2 Days Ago
by Reverend Jim
Welcome to Daniweb. Please take a moment to read the [Daniweb Posting Rules](https://www.daniweb.com/welcome/rules).
Re: Cannot run exe from asp.net
Programming
Web Development
1 Week Ago
by lennyli
… 192.168.0.1. My computer will use wifi to
connect
to the SSID of the router connected to the product… to demonstrate that i can use my web browser to
connect
to the webpage http://192.168.0.2. If I…
Re: Which is the best email marketing tool you ever used?
Digital Media
Digital Marketing
3 Weeks Ago
by ashleydent4u
… is the one that fits your workflow and helps you
connect
with your audience effectively!
Re: Question/Answering over SQL Data Using LangGraph Framework
Programming
Computer Science
2 Weeks Ago
by Pelorus_1
Through its combination of natural language processing and structured query generation, LangGraph makes interfacing with databases and extracting insights over SQL data easier than ever.
Re: How to connect to the Pinterest API using PHP?
Programming
Web Development
1 Month Ago
by Dani
Oh, it looks as if the tutorial was for the old DaniWeb API that no longer exists. The [DaniWeb
Connect
API](https://www.daniweb.com/
connect
/developers) is also OAuth-based and has some of its own documentation.
Re: How to connect to the Pinterest API using PHP?
Programming
Web Development
1 Month Ago
by Dani
… create one [here](https://developers.pinterest.com/docs/getting-started/
connect
-app/) as that's the first step. Also, it looks…
Multiple MySQL connections + transactions
Programming
Databases
1 Month Ago
by Dani
… with a different connection? e.g. // Open Connection 1 and
connect
to Database A // Start transaction with Connection 1 // Write some… stuff with Connection 1 // Open Connection 2 and
connect
to Database B // Write some stuff with Connection 2 // Close…
Re: Multiple MySQL connections + transactions
Programming
Databases
1 Month Ago
by Reverend Jim
As far as I know you can
connect
to more than one database at a time but you …
Re: How is digital marketing important for business?
Digital Media
Digital Marketing
2 Months Ago
by chris_108
… media, in particular, is a great way for businesses to
connect
with their audience on a personal level. It’s not…
Re: How To Send MYSQL Data To An Email
Programming
Web Development
2 Months Ago
by Biiim
…, DBUSER, DBPASS, DBDB); if (!$conn) { echo "Error: Unable to
connect
to MySQL." . PHP_EOL; echo "Debugging errno: " . mysqli_connect_errno…
Re: How do I establish an open connection to an open web browser in C#?
Programming
Software Development
2 Months Ago
by pathofbuilding
… = "localhost:9222"; IWebDriver driver = new ChromeDriver(options); to
connect
. This prevents LinkedIn from detecting automation and avoids re-login…
Re: How do I establish an open connection to an open web browser in C#?
Programming
Software Development
2 Months Ago
by xivlauncher
You can also use SHDocVw or System.Diagnostics name spaces from C# to interact with an open web browser, or
connect
programmatically to an existing browser window using the UI Automation API. Of course, for deeper control over Chrome, you may need the Chrome DevTools Protocol.
Excited to Join DaniWeb! 🚀
Community Center
Say Hello!
1 Month Ago
by aimodapk
… AI innovations in mobile apps with the community. Excited to
connect
with like-minded tech enthusiasts! What’s the most impressive…
Hi, my name is Kevin
Community Center
Say Hello!
4 Weeks Ago
by dawsondeandre
I'm absolutely delighted to become a part of this amazing forum! It's exciting to
connect
with like-minded individuals and exchange ideas in such a supportive community. I can't wait to contribute, learn, and be inspired by everyone here!
How to connect to the Pinterest API using PHP?
Programming
Web Development
1 Month Ago
by FarrisFahad
I want to post Pins using Pinterest API. I have tried to generate code using ChatGPT but it returns an error. Here is my code so far ... <?php $clientId = "xxx"; // Replace with your App ID $clientSecret = "xxx"; // Replace with your App Secret $redirectUri = "xxx"; // Must match …
Re: Using Ubuntu for chess tournament
Hardware and Software
Linux and Unix
2 Months Ago
by rproffitt
… had an adhoc Wi-Fi setup so the clients could
connect
and send in status. Wi-Fi has range and supported… was solved. Moving on to the system, the clients would
connect
to the MySQL server and update records when status changed…
Re: Looking for AI app developers
Programming
Mobile Development
2 Months Ago
by Dani
That sounds really interesting. Did you ever launch the SDK? I am a bit in the same boat as you as DaniWeb
Connect
has an API but I have been really struggling getting it adopted. Sorry I can't be more help to you directly.
Re: Meta shop setup problem
Digital Media
Digital Marketing
1 Month Ago
by Dani
… there is a way around it, unless you were to
connect
to Facebook using a proxy server and spoof your location…
Re: Contact form does not working
Programming
Web Development
1 Month Ago
by Biiim
… password'; //SMTP password $mail->Port = 587; //TCP port to
connect
to; use 587 if you have set `SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS…
Re: How Can I Hookup My Mobile Phones To My PC Monitor ?
Hardware and Software
Hardware
Mobile and Wearables
1 Month Ago
by Fitmovers
If you want to
connect
your Samsung Galaxy A9 to your Dell E1916HV monitor, you'll need a USB-C to HDMI adapter (if your phone supports HDMI output). Since your phone has only USB ports, check if it supports Samsung DeX or screen mirroring via an MHL adapter. If your monitor only has VGA input, you might also need an HDMI to VGA converter.
Re: Theory on the VPN
Programming
Mobile Development
1 Month Ago
by Mr.M
I guess a more research on this has to be made, problem is that it is hard to get the exact people who knows this and has done it before to give straight answers.
Re: Multiple MySQL connections + transactions
Programming
Databases
1 Month Ago
by Dani
A slightly related question: Is it okay to use PHP's `mysqli::select_db()` function to switch databases in the middle of a transaction? This is what got me into trouble in the first place, when I started a transaction, performed some writes, switched databases, and then wrote to that second database, and then switched back, and performed some …
Re: Multiple MySQL connections + transactions
Programming
Databases
1 Month Ago
by Salem
https://www.php.net/manual/en/mysqli.select-db.php I think the key word in all of this is "default". You can probably do what you want, but you have to refer to each DB by it's own handle. Using `select_db` is fine, if you only have one DB and you want to be lazy about referring to it. So you make it the default DB. But as …
Re: Multiple MySQL connections + transactions
Programming
Databases
1 Month Ago
by Dani
I am already using multiple MySQL connections throughout the project, as well as select_db() in some other places. My question specifically revolved around if anyone can explain why select_db() implicitly committed the transaction, and then when done again to return back to the initial database, it did a rollback instead of commit.
Re: Multiple MySQL connections + transactions
Programming
Databases
1 Month Ago
by Reverend Jim
In that case I can't suggest anything. I've never had to update multiple databases for any of the systems I set up.
Re: Multiple MySQL connections + transactions
Programming
Databases
1 Month Ago
by toneewa
You're not suppose to switch databases with a connection mid-transaction. It's by design to rollback because it considers it a change to the session context. XA Transactions can be done if you use the InnoDB storage engine. Create separate PDO connections for each database. I wonder what kind of results you get with autocommit, serializable …
Re: Multiple MySQL connections + transactions
Programming
Databases
1 Month Ago
by Dani
> If the databases are on the same server and use InnoDB, you can use fully qualified table names, and write to multiple databases on a single connection. That's what I ultimately started doing instead! Thank you so much for a definitive answer to my question.
Re: How is digital marketing important for business?
Digital Media
Digital Marketing
2 Months Ago
by DM Karun
Hey! I agree with you. Digital marketing is the simplest, most cost-effective, target-oriented, and result-driven method for marketing purposes. It's also highly report-oriented, which is a key advantage. The importance of digital marketing can be just as significant—if not more so—than other departments, including sales. Additionally, as with…
Re: Hi everyone, I'm shinedezigninfonet
Community Center
Say Hello!
1 Month Ago
by Dani
Hi and welcome to DaniWeb! What is it that you do at your company? Do you personally do any of the web/app development?
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC