-
Began Watching Email marketing tool
What is the best Email marketing tool in market ? -
Replied To a Post in set autoincrement to the position (COMPETITION) after calculate totalmarks
Sorry, I'm not understanding your question. The SQL you provided is performing a SELECT on the database, retrieving data. But you want to assign data? Does that mean you want … -
Began Watching set autoincrement to the position (COMPETITION) after calculate totalmarks
I have a problem assigning position (number) based on the total marks. Here is the code. TQvm for your assistance the calculation is done perfectly, the ranking is shown correctly … -
Created Java Localization - Create ResourceBundles from text files
## Introduction ## When localizing your application, `ResourceBundle` can be a great way to load Strings from different locales. The only concrete implementation of ResourceBundle is `PropertyResourceBundle`, which allows us … -
Created Junit 5 - Test Instance Lifecycle
## Introduction ## Junit is a popular framework to create tests for Java applications. Although individual unit tests are mostly straightforward, integration and functional tests are a little bit more … -
Replied To a Post in Why is the PayPal Checkout page greyed out?
Thanks for responding to my post, below is what my customers see when they go to pay, it's a grey page with lines, there's no fields to fill, no .gifs. … -
Replied To a Post in Help with referencing url in code
Hi Chris, Sorry, I'm having a difficult time understanding exactly what you are trying to display. If a url is `example.com/videos/category/1/sub536` then print `sub`? If it's `/videos/category/1/sub__` then ... what?? … -
Began Watching Help with referencing url in code
I am trying to display something on web pages that show this in the url: "sub__" for example: ...com/videos/category/1/sub__536. It was suggested I try this code: $page = basename($_SERVER['PHP_SELF']); if … -
Replied To a Post in Marketing for website
> Wait a second, isn't such work what you do professionally? Why do you say that? Also, just because you are an employee of a social media company doesn't mean … -
Began Watching Marketing for website
Which social media can help to improve your website? -
Replied To a Post in Why is the PayPal Checkout page greyed out?
The checkout page is greyed out if you are on your own Paypal checkout page. I've never seen it in any other scenario. What is the difference between the Paypal … -
Began Watching Why is the PayPal Checkout page greyed out?
It seems this fault has been going for years, PayPal don't know why it is and say it's our fault. I think the checkout page is hosted somewhere else? My … -
Replied To a Post in Can you tell me if this file outputs a subcategory page?
This file is not standalone. It's not like we can just try executing it on our end and seeing if it does what you want it to do. It's a … -
Began Watching Can you tell me if this file outputs a subcategory page?
This php has subcategory code on line 149 and 215 https://pastebin.com/zgbELKJf can you tell me if this file outputs a subcategory page? -
Edited How obtain url friendly with htaccess
Hi ... how can i have url seo friendly from database ?? Example: localhost/myshop/product.php? id = 95 Or: https://www.myshop.it/product.php?id=95 I have done several tests with .htccess but it doesn't work. … -
Replied To a Post in How obtain url friendly with htaccess
> I have to ask why do this. I've been watching users for years and they don't care what the URL is if they are shopping. This is considered one … -
Began Watching How obtain url friendly with htaccess
Hi ... how can i have url seo friendly from database ?? Example: localhost/myshop/product.php? id = 95 Or: https://www.myshop.it/product.php?id=95 I have done several tests with .htccess but it doesn't work. … -
Replied To a Post in Hello everyone! I'm Monika!
Hi there! Welcome to DaniWeb -
Began Watching Hello everyone! I'm Monika!
Just want to find here some friends and like-minded people :) -
Created Anyone know how to do an ipo for the employee management system?
#include <iostream> // input and output code #include<conio.h> // getch - passwd #include<cstdio> // fileopen fscanf fileclose #include<windows.h> // system cls and pause using namespace std; ///////////////////////////////////////////////////CLASS EMPLOYEE ///////////////////////////////////////////////////////// class … -
Created Java Functional - How to use the groupingBy() Collector
## Introduction ## When collecting a stream, the `groupingBy()` Collector(`java.util.stream.Collector`) can be used to put data into different groups based on specified conditions. `groupingBy()` is a little bit more complicated … -
Created Java Concurrency - Safely modify numbers with AtomicInteger
## Introduction ## Whenever we want to modify numbers from multiple threads running concurrently, such as modifying a counter, one of the best options is to use the AtomicX classes. … -
Replied To a Post in How can I restore my old books?
I suppose you can take a photo of every page and then use OCR software to convert it to a word document? I guess it depends on what your goals … -
Began Watching How can I restore my old books?
I found the first book i wrote but its all worn out, the pages are yellowish and and almost fully gone is thier any way I can recover the pages … -
Replied To a Post in Debug time run ok but with out debug not run properly please help me
What related threads? -
Began Watching Debug time run ok but with out debug not run properly please help me
Debug time Application run good all private sub and Function work properly, but with out debug not run properly please help me -
Replied To a Post in Hi everyone, I'm domanton
Hi there! Welcome to DaniWeb :) -
Began Watching Hi everyone, I'm domanton
.. -
Created How to build a simple Whatsapp bot on php
Hi, everybody. I write bots and decided to share my experience of writing bots on the [Chat API] platform, maybe it will be interesting to someone We’ll tell you how … -
Edited Java compilation interview question explanation
Hello. Can anyone please answer and explain the question from the image here. Thank you!  -
Created Java compilation interview question explanation
Hello. Can anyone please answer and explain the question from the image here. Thank you!  -
Created Kotlin equivalence of Java try-with-resource statement
## Introduction ## If you are a Java developer coming to Kotlin, you might have wondered how to use a language construct that is similar to the try-with-resource statement in … -
Created How to create Intersection Types in Java
## Introduction ## In Java, a common way to express a type that is a combination of two or more types is to just create an interface that extends the … -
Replied To a Post in Is the new distribution capability ( NDC ) a good thing?
What is NDC? -
Began Watching Is the new distribution capability ( NDC ) a good thing?
I am a travel agent, looking to know about NDC. -
Created Extension Functions and Properties in Kotlin
## Introduction ## In Kotlin, we can extend classes without subclassing via extension functions and extension properties. This feature is useful whenever we want to extend 3rd party libraries or … -
Created How to the async() coroutine builder in Kotlin
## Introduction ## `launch()` and `async()` are two of the most common coroutine builders to use in Kotlin, but they are somewhat different in usage. `launch()` returns a `Job` object, … -
Created Combine RxJava Observables - mergeWith() and concatWith()
## Introduction ## In this tutorial, we will look at the RxJava `mergeWith()` and `concatWith()` operators. Amongst others, they are used to combine Observables together. All of the RxJava operators … -
Created RxJava 3 - How to create and observe Observables
## Introduction ## RxJava 3 includes 5 core classes: 1. Flowable, 2. Observable, 3. Single, 4. Completable, 5. Maybe. This tutorial aims to teach the basic concepts behind Observable, which … -
Replied To a Post in This is a very minor bug
What you're referring to is the thread listing page, where it shows the avatar of who wrote the first post in the thread and who wrote the last post in … -
Began Watching This is a very minor bug
Curious. Both [this post](https://www.daniweb.com/programming/computer-science/threads/536401/how-to-write-a-function-of-image-rotation) and [this post](https://www.daniweb.com/programming/computer-science/threads/536400/how-to-rotate-image-using-c) by user omar90 are tagged as "first post by omar90". They were posted 6 hours apart. -
Replied To a Post in Brace yourself for support spam
Looks like the vast majority of it was caught by the spam filter. -
Began Watching Brace yourself for support spam
What are the odds. Three minutes before I popped in, we started getting support spam. I whacked 4-5 but I expect they'll keep coming. -
Created How to use coroutine Dispatchers in Kotlin
## Introduction ## With coroutines in Kotlin, we are able to execute suspending functions without blocking the current thread. By default, most coroutine builder functions use the `Dispatchers.Default` context, but … -
Created How to read file attributes with Java NIO
## Introduction ## The `java.nio.file.Files` class includes many convenient methods to read file attributes, but sometimes these convenient methods just are not enough to meet our needs. In this tutorial, … -
Replied To a Post in How to echo this amount, kwh of the multidimensional array in php?
I’m a little confused by your question. Is what you’re showing me JSON or the contents of a PHP array? What are you trying to accomplish? -
Began Watching How to echo this amount, kwh of the multidimensional array in php?
[ { "regionCode": "0", "": { "amount": "291377681.35999995", "kwh": "5589027.089364664", "numberOfPay": "43876" } }, { "regionCode": "3", "AZARE Region": { "amount": "13494424.550000023", "kwh": "286885.42398979055", "numberOfPay": "3863" } }, { "regionCode": … -
Replied To a Post in Which is the best seo friendly website, is it WordPress or html?
All websites are in HTML. Wordpress is a blogging platform that is written in PHP and generates the HTML for you. -
Began Watching Which is the best seo friendly website, is it WordPress or html?
Which is the best seo friendly website, is it wordpress or html? -
Replied To a Post in For the first post-say hello
Hello right back at ya! :)
The End.