Posts by Mitchell • 89 points
10 posts
-
0
votes0
answers17
viewsQ: PHP - Check all user reminders' dates
Good, I created a script that aims to determine whether the Column Dates ads_featured_dates are expired or not.... The problem is, the script updates the ones that are past the date, but also the…
-
0
votes2
answers455
viewsQ: php count remaining hours
What is the best way to calculate the remaining hours of a date? Example: $date = 2018-02-02; $calcular_restante = ....; Missing X Days and X time to get to the day. What’s the best way to do it?…
-
5
votes1
answer4785
viewsQ: CSS - Hide a part of text
Good, I have a column in MYSQL called decryption. When I’m going to echo it, it appears in full text, what I wanted was just to show a part of the text and not everything. How I do in css?…
-
0
votes1
answer144
viewsQ: The PHP Rating System
Well I’m creating a simple rating system. What I intend is that every 2 ratings he add a Star, with a maximum of 5 stars. How do I do that? I’ve been doing this but, no kidding.. $star =…
-
1
votes1
answer43
viewsQ: php - add quantity + price in separate tables
Good. I have the Products table + the Cart table When I Add to Cart.. the function adds 1 record in the Cart table stating the User Name, Product ID and Quantity of products ordered. Now I want to…
-
0
votes2
answers71
viewsA: Linux / Node.js Error by Require
TypeError: Cannot read property 'require' of undefined at Object.<anonymous> (C:\Users\Silva\Desktop\Steam-Card-Farmer-master\Steam-Card-Farmer-master\farmer.js:10:42) at Module._compile…
-
1
votes2
answers71
viewsQ: Linux / Node.js Error by Require
I got this error when I ran the file "Typeerror: Cannot read Property 'require' of Undefined" var Main = Electron.remote.require('./payment.js'); Where could I be wrong?... Confused... The so-called…
-
0
votes1
answer57
viewsQ: PHP Show all data from a ROW in OPTION and INPUT
As you are creating a half-complete project... I made a FORM with the <.OPTION.> and <.input option..> what I want is... to make a Loope where in this option it takes with it as POST the…
-
1
votes0
answers1050
viewsQ: PHP Select Option MYSQL
I have a page where the person Adds Database values. <?php $get = ("SELECT movie_id, movie_name FROM movies ORDER BY movie_name DESC"); $result2 = mysqli_query($con, $get); $option = '';…
-
0
votes1
answer25
viewsQ: PHP Add Records to MYSQLI for all USERS
Good, I am tempted that by making a Registration, that Register add in all example users. table users id | username Record to Add: id_users | movie_id | movie_name user1 | ex2 | ex2 user2 | ex2 |…