Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
write
- Page 1
Re: Help needed Related Website
Digital Media
Digital Marketing
3 Days Ago
by ashishkumar56
… to rank my Website in USA for different services. I
write
article on digital marketing, SEO, SMM but i Cant get…
What are the best Local Seo practices in 2025?
Digital Media
Digital Marketing
Search Engine Strategies
2 Days Ago
by asadalig
…. Voice search is getting bigger too, so it helps to
write
content that sounds like how people talk.
Re: Digital Marketing Strategy for My Website
Digital Media
6 Days Ago
by MasoodDidThat
…-Page) 7. Produce quality content on social media platforms and
write
SEO friendly blogs 8. Start your ads with a low…
Re: Coin Flip (Python Newbie)
Programming
Software Development
5 Days Ago
by jassonadder
Hey! Great job getting started with Python—your logic is almost there, just a couple of small fixes needed. The main issue is that you're using the variable timesflipped in your while loop, but it was never initialized. Because of that, the loop never runs properly, and your counters don't change. Here's a corrected version of your code:…
Re: Coin Flip (Python Newbie)
Programming
Software Development
3 Days Ago
by Dani
> Presumably bumping every "coinflip" post to spam their URL Nothing wrong with that!! I'll take a trillion helpful posts if all someone wants in exchange is a free signature link back to their website (that only shows up for logged in members, so no SEO incentive).
Re: Why SEO is Important for the Website?
Digital Media
Digital Marketing
Search Engine Strategies
3 Weeks Ago
by heerii
… or sales. To improve your website’s SEO, you can
write
helpful content using the right keywords, make sure your site…
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by lennyli
…(command) ' Clean up Set objShell = Nothing ' Output the result Response.
Write
("Executable executed with result: " & result) %> <…
Re: How Can I Increase More Traffic of My Website?
Digital Media
Digital Marketing
2 Weeks Ago
by Kidskastle
Share your website on social media,
write
helpful and interesting content, use the right keywords so people can find you on Google, and ensure your website loads fast and works well on mobile devices. Ads can also be placed on your site or other websites can link to it.
Multiple MySQL connections + transactions
Programming
Databases
1 Month Ago
by Dani
…work. From within my PHP script, can I
write
to a database using a MySQL connection in …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 the transaction associated…
Re: Multiple MySQL connections + transactions
Programming
Databases
1 Month Ago
by toneewa
… use InnoDB, you can use fully qualified table names, and
write
to multiple databases on a single connection. Otherwise, just use…
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: What’s Best Way to Clear File Contents Without Deleting the File in Linux
Hardware and Software
Linux and Unix
1 Month Ago
by Reverend Jim
I'm confused. Since the log file is recreated automatically what is the problem with just deleting it? But if you want to shorten it you could always open it as
write
(but not append) and
write
a null string to it.
McCharts - ArkTS
Programming
Software Development
1 Month Ago
by 杨_659
… code for calculating the maximum text width. I will also
write
some logic in the code. Please read the code carefully…
What’s Best Way to Clear File Contents Without Deleting the File in Linux
Hardware and Software
Linux and Unix
1 Month Ago
by adildixi
…). While looking for efficient methods, I came across a helpful
write
-up of DedicatedCore that explains different ways to shorten or…
Re: Buggy career talk :-P
Programming
1 Month Ago
by Salem
… memory operations. So very rarely, a
write
-read in the algorithm turned into a read-
write
on the bus. Fine if it…
Re: How to Efficiently Develop Apps for iOS and Android?
Programming
Software Development
2 Months Ago
by gorgebutler
… Native helps save time and effort by allowing developers to
write
a single code base for both platforms. Optimizing performance, focusing…
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
2 Months Ago
by jkon
… 300px 0px"). 2. Handle JSON-LD data. I would
write
more, but I guess this is out of scope. 3…
Re: How to connect to the Pinterest API using PHP?
Programming
Web Development
2 Months Ago
by Dani
Never trust ChatGPT to
write
fully flushed out code for ya :) Pinterest uses OAuth to …
Re: Show computer name on a label
Programming
Software Development
1 Month Ago
by Mr.M
I don't know why DaniWeb keep on crashing whenever I try to
write
Re: Show computer name on a label
Programming
Software Development
1 Month Ago
by Salem
… know why DaniWeb keep on crashing whenever I try to
write
On my phone (in two different browsers), the thing in…
Re: How Can I Increase More Traffic of My Website?
Digital Media
Digital Marketing
1 Month Ago
by Namrata_2
To drive more traffic to your website,
write
great content that resonates with your audience and get it …
Re: Optimizing working with big data
Programming
Software Development
1 Month Ago
by Dani
…. For me, the most important is real-time read and
write
performance to tables with millions of rows that have high…
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 Reverend Jim
As far as I know you can connect to more than one database at a time but you require a separate connection object for each one. Since queries go through the connection object you can't run a query on more than one db at a time. It seems to me that transactions are also connection based so you would have to manually roll back a transaction on A if …
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: What’s Best Way to Clear File Contents Without Deleting the File in Linux
Hardware and Software
Linux and Unix
1 Month Ago
by Salem
I guess most people just use https://linuxconfig.org/logrotate Set it and forget it. There's no need to resort to random per file hackery (or quackery).
Re: Question/Answering over SQL Data Using LangGraph Framework
Programming
Computer Science
1 Month 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.
Write Your First Application in Win32 Using Assembly
Programming
Software Development
17 Years Ago
by sanzilla
…expalin the code ======================================================= Oky you are going to
write
an application program in win32 Therefore , there …exe is there . Then your are going to
write
your first assembly language source file . The … notepad HelloWin.asm The you are going to
write
the first assembly language program in the notepad …
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