Most voted "accountant" questions
60 questions
Sort by count of
-
0
votes0
answers15
viewsConflict between counting words from a file and other functions
I need to make a progress as described in the image. I was able to do all the steps, but I couldn’t get the word count to run along with the other processes. I followed the code: #include…
-
0
votes1
answer73
viewsSingle click counter in php with 12-hour time
Hello, I’m trying to create a click counter that records a log in the database to record the visitor’s IP so that when he clicks the link the click counter only records if he clicked after 12 hours…
-
-1
votes1
answer519
viewsHow to count the number of records (Rows) in an SQL statement?
I am in this SQL, recovering the records (number of vendors per city) of a table and I would like to count how many records have in each city. I want to put something like Tal City (9). I will put a…
-
-1
votes1
answer60
viewsCount specific character amount in a range
I have a data range similar to that: I need to count how many V’s and D’s are in between. I’ve tried using SUMIF and COUNTIF Can someone help me?…
-
-1
votes1
answer999
viewsCount lines and words from a C text file
I have a problem in the project, this code should count the lines and words of a text file in C but the output of the number of lines is right and the number of words is always 0. //Função que conta…
-
-1
votes3
answers102
viewsMy variables are not being counted in the code
I’m creating a page for the user to enter an amount of numbers and stop only when he type the number 0, right after that, would open an alert telling the amount of numbers the user has typed, how…
-
-2
votes1
answer190
viewsPHP script for counting comma-separated records
In the databank I have a column that takes strings in this format: ["87","12","67"] What I need is to count each value separated by comma and assign to some variable, remembering that there are more…
-
-2
votes2
answers419
viewsDoubt with a countdown in JS and HTML
I imagine that my doubt is a little silly, but I’m seriously half a day trying to solve this challenge that I proposed and unfortunately I could not, remembering that I am a good beginner. Well, I…
-
-3
votes1
answer121
viewsLink counter - no external page, using JS onClick() or other solution in PHP + Mysql
Hello, I seek help to assemble a link counter. I would not like to use a collection page but rather a solution that runs on any page. Example on a page with 03 links: link01.php, link02.php (which…
-
-3
votes2
answers76
viewsEven Number Counting (c language)
I need to display on the screen the numbers between a typed initial and final value, after which write how many are pairs. ex. 2 and 10 will display on screen: 2, 3, 4, 5, 6, 7 ,8 ,9, 10. then tell…