-
Replied To a Post in Hi everyone, I'm melvin.sosa526
Hi and welcome to DaniWeb!! -
Began Watching Hi everyone, I'm melvin.sosa526
Hi everyone im new , i wish to enjoy my stay. thks -
Gave Reputation to broj1 in "$row = mysqli_fetch_array($result); not working"
Now, there might also be a problem in the password field definition in the table spec: `password varchar(20) NOT NULL`. As far as I remember the good old MD5 produces … -
Replied To a Post in "$row = mysqli_fetch_array($result); not working"
Good catch! The OP is using MD5() but also storing the password hash in a column not suitable for MD5 hashes. Yes, use password_hash() instead of MD5() and increase the … -
Created Create buttons on kivy automatically with different names using python
I'm trying to create buttons with a for, but I want every button to have a different name, so I can later differenciate them and use them easily. As you … -
Replied To a Post in TECHNIQUES OF SEO
Pretty shill of a question … -
Replied To a Post in My site has disappeared from Google on mobile searches only
> My buddy is telling me his search results change from PC with Chrome to iOS and Safari. Safari is an Apple thing so filtering can happen. This can happen … -
Replied To a Post in "$row = mysqli_fetch_array($result); not working"
No. Double quotes allow you to include variables. Single quotes are literal strings and don’t recognize variables. They are encasing the entire SQL query in double quotes so the variables … -
Replied To a Post in What programming language is commonly used in amking games?
I would think c++, but I guess it depends what type of game and for what platform? -
Began Watching What programming language is commonly used in amking games?
The best programming language for game developers -
Created Android Native - How to set Dark Theme
## Introduction ## With OLED screens becoming more and more common on smartphones, adapting a dark theme to your app can provide a boost to battery life. In this tutorial, … -
Created Android Native - How to apply textAppearance
## Introduction ## All TextView objects have a special attribute called `textAppearance`. This attribute can be used to set the style for text content in a TextView without affecting other … -
Replied To a Post in how to upload multiple images using Longblob
Is there something about this that isn’t working that you need help with, or are you just sharing your code? -
Began Watching how to upload multiple images using Longblob
if (count($_FILES) > 0) { if (is_uploaded_file($_FILES['userImage']['tmp_name'])) { $imgData = addslashes(file_get_contents($_FILES['userImage']['tmp_name'])); $imageProperties = getimageSize($_FILES['userImage']['tmp_name']); $sql = "INSERT INTO trial (imageType ,imageData,uploaded_on, user_id,tax_payer_id) VALUES('{$imageProperties['mime']}', '{$imgData}',NOW(),'".$_SESSION['id']."','".$_GET['id']."')"; $current_id = mysqli_query($db, $sql) or die("<b>Error:</b> … -
Replied To a Post in "$row = mysqli_fetch_array($result); not working"
What is in connection.php? Are you sure that the PHP is able to successfully connect to the database? Do you see anything in your error log? Alter hour code to … -
Began Watching "$row = mysqli_fetch_array($result); not working"
<?php if (isset($_POST['submit'])) { session_start(); include('connection.php'); $email = mysqli_real_escape_string($conn, $_POST['email']); $password = mysqli_real_escape_string($conn, $_POST['password']); $hash_password = md5($password); $sql = "SELECT * FROM users WHERE email = '$email' AND password = … -
Replied To a Post in Why cls slow down speed
In the context of SEO (as this is the SEO forum), it’s absolutely always referred to as CLS. I actually had to look up what it stands for to give … -
Replied To a Post in Can you please tell me what these lines of code do?
// Set the value of the $sub_category variable to zero. $sub_category = 0; // Check if the sub_category_id field, passed in via an HTTP post request, is empty, and if … -
Began Watching Can you please tell me what these lines of code do?
Can you please tell me what these lines of code do? $sub_category = 0; if (!empty($_POST['sub_category_id'])) { $is_found = $db->where('type',PT_Secure($_POST['category_id']))->where('lang_key',PT_Secure($_POST['sub_category_id']))->getValue(T_LANGS,'COUNT(*)'); if ($is_found > 0) { $sub_category = PT_Secure($_POST['sub_category_id']); } } … -
Replied To a Post in There is no Image to show after I upload image
It's impossible for us to properly diagnose if anything is broken because you are including an external file php_action/database.php that we don't know the contents of. That being said, it … -
Began Watching There is no Image to show after I upload image
<?php if (count($_FILES) > 0) { if (is_uploaded_file($_FILES['userImage']['tmp_name'])) { $imgData = addslashes(file_get_contents($_FILES['userImage']['tmp_name'])); $imageProperties = getimageSize($_FILES['userImage']['tmp_name']); $sql = "INSERT INTO qr(user_id,file_name ,QrCode) VALUES('".$_SESSION['id']."','{$imageProperties['mime']}', '{$imgData}')"; $current_id = mysqli_query($db, $sql) or die("<b>Error:</b> Problem … -
Replied To a Post in Hi everyone, I'm sueambrose121
Hi there! Welcome to DaniWeb :) What brought you here? -
Began Watching Hi everyone, I'm sueambrose121
I am a writer. Living in Boston -
Edited Why cls slow down speed
One of my client's micro <link snipped> site has some cls issues and that's why it has a slow response on mobiles. How can we resolve cls issues. -
Replied To a Post in Why cls slow down speed
> What is "cls"? From memory it's the clearscreen command found in old TRS-80 Basic. In the context of SEO, CLS (cumulative layout shift) is a ratio that is representative … -
Began Watching Why cls slow down speed
One of my client's micro <link snipped> site has some cls issues and that's why it has a slow response on mobiles. How can we resolve cls issues. -
Replied To a Post in I am searching for best marketing course
It's been my experience that the best digital marketing course is to start off with your own small blog and learn from experimenting with what works and what doesn't work … -
Began Watching I am searching for best marketing course
Which is the best digital marketing course? -
Replied To a Post in Hi everyone, I'm fins88
Hi Fins! Welcome to DaniWeb!! Hope to see you around. -
Began Watching Hi everyone, I'm fins88
Hi everyone, fins, Im 24 I currently work as an IT and marketing consultant for a Indonesia company that develops employee monitoring software. Wish everyone a good day! -
Created Can someone help me make this code into an Object oriented C++ project?
I am struggling with this program trying to change it from structured C++ code to an object oriented code. if anyone could offer help that would be great. the code … -
Replied To a Post in Guys i really need help with this assignment as im really out of ideas
 This is the full problem that im currently facing. The num of unit, filling flavour, subtotal, and grandtotal follows the most recent input. The input by user in the … -
Created Android Native - lazy loading Views with ViewStub
## Introduction ## Complex Views can use up RAM and reduce the performance of your Android apps. If a View is rarely used, you should consider delaying its rendering until … -
Created Android Native - How to use MotionLayout
## Introduction ## Among all of the animation API’s on Android, MotionLayout is one of the best classes to use to create complex animations. It can animate property and motion … -
Replied To a Post in How to dynamically display a popup
> @Dani, have you done any changes to the website? No, I haven't made any changes today, and nothing that should affect login. Are you sure you are currently logged … -
Replied To a Post in Hi everyone, I'm daviharp
HI there. Welcome to DaniWeb!! What brings you here today? -
Began Watching Hi everyone, I'm daviharp
i am new here. -
Replied To a Post in task completed
You're trying to implement what? -
Began Watching task completed
Hello, I am trying to implement -
Replied To a Post in I have homework activity and wondering if you could provide some advice
Please explain what you mean by providing you with advice. Do you have VB.NET installed on your computer? Did you rprofessor show you how to use dialog boxes? Did you … -
Began Watching I have homework activity and wondering if you could provide some advice
Hi guys I want to used a dialog box in vb.net to open a txt file, which contains single line of a few character like TFTFFTFT, and store it into … -
Replied To a Post in Hi everyone, I'm 55julio
Hi there! Nice to virtually meet you as well. -
Began Watching Hi everyone, I'm 55julio
hi every one, its nice to meet you -
Created Card Game War (JAVA)
**You are tasked to make a game of WAR! ** War is a card game played between two people. Each person gets half of a shuffled deck of cards. They … -
Replied To a Post in Number one rank
Depends what you want to rank for, I suppose. -
Began Watching Number one rank
How to rank number one using SEO? -
Replied To a Post in How to auto calculate the html table using jQuery?
What isn't working as intended? I see that you are using javascript to calculate the sum if you add a new service, or if you click the remove button. Are … -
Began Watching How to auto calculate the html table using jQuery?
Can someone or anybody help me on how to auto calculate total price in the table? Please see the image below:  Here's my … -
Replied To a Post in How to dynamically display a popup
> I see that basically what I want is called tooltip but on w3c school on the link it's called popup.. Tooltips typically automatically show when hovering over an element … -
Began Watching How to dynamically display a popup
Hi DW. I'm trying to display a popup over an input box, but the issue is that some websites that I want to also display on have div class name …
The End.