11,557 Posted Topics
Re: You tagged both VB.net as well as Java. What language is this in? | |
Re: What are you specifically referring to? Using Wordpress vs a different CMS? Writing 500 word articles or 2000 word articles? | |
Re: Before we can code this, we need to understand how we calculate it, so we know what to tell the computer to do. How do you find the roots of a quadratic equation? I don’t remember as I haven’t thought about this in 25 years. | |
Re: Create a loop that executes 10 times With each iteration of the loop, ask the user to input a number Each time a number is entered, add its value to a sum variable After the loop finishes, you should have the total of the 10 numbers entered Divide this total … | |
Re: Welcome, but I’m confused by your question. Data structures and web design are two very different things. What are your goals? | |
Re: Hi there and nice to meet you!! Welcome to DaniWeb. | |
Re: Line 14 of your code converted the JSON returned from the cURL request into a PHP object. Typically, you would do something such as `$resArr->profileTestList[0]->testCode->testID->name` or something roughly like that. Unfortunately, you did not copy and paste the complete stdClass Object code here, and what you did post is not … | |
Re: When that happens, I just kill the rogue transactions causing the deadlocks because odds are the person already closed their web browser because the page was taking too long to load. But I agree, this looks like you are just trying to trick us into doing your homework for you. | |
Re: Katherine, are you the same person as Eerol? I'm confused. | |
Re: Don’t listen to rproffitt. Don’t take any marketing courses! Nearly all marketing courses are scams. Not only that, but they won’t teach you any tricks to make your site popular. That’s because standing out from the crowd is all about thinking outside the box and being more creative than the … | |
Re: What is array C? What is the add array? What is the number 7? So many questions! | |
Re: Just google for a free php-based photo album. It should be the easiest to set up and I’m sure there’s tons of them. Also, I’m not sure what this is doe, but would uploading them all to social media work? | |
Re: > Why not use AND? niche1, because AND searches for rows that meet muliple conditions separated by an AND clause. It doesn't retrieve the result set of multiple queries. What you can do, however, is use the `UNION` clause. SELECT title, content FROM cards WHERE card_id = $card_id LIMIT 1 … | |
Re: Hi and welcome to DaniWeb. | |
Re: Based on the code you've provided, it is impossible for the query `UPDATE staff SET status = 'verified' WHERE activation_code = '$activation_code' LIMIT 1` to be executed if it's saying "soemthing went wrong" on line 24. Are you sure the status wasn't already set to *verified* before running the PHP … | |
Re: Sorry, I just saw this now. Do you mind sharing the solution so it could help other people in the future? Based on the code I am seeing, I would expect that after `var swal2container = $("#swal2container").text();` the value of swal2container would be *test*. You're saying it wasn't? | |
Re: Welcome to DaniWeb! The best way to get started is to download and follow the install instructions for a popular php app such as Wordpress. | |
Re: I think what he's saying is that he has a homework assignment where you need to write code that outputs that pattern. Can you please show the code you have so far, where you're stuck, and what errors you're getting? Then we can help you. | |
Re: Here's a tutorial on how to create a tutorial in SQLite: https://www.sqlitetutorial.net/sqlite-create-table/ Based on reading it, it looks like you would want SQL queries similar to: CREATE TABLE book ( BookID INTEGER PRIMARY KEY, BookTitle TEXT NOT NULL, Author TEXT NOT NULL, ISBN TEXT NOT NULL, Publishers TEXT NOT NULL … | |
Re: When they say "About X Results" it's just an approximation of what type of demand is in their database. After clicking through the first dozen pages or so, Google stops returning results. | |
Re: As rproffitt says, this type of project is at least a full week's worth of work. How long ago was the project assigned? Do you have any code written so far? We can definitely try to assist you if you're stuck with something, but we are all volunteers here, just … | |
What are your favorite hobbies on the computer outside of work and DaniWeb, of course? Personally, I'm a Quora addict. | |
Re: You can install Bootstrap v5 as so: <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous"> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script> Do you have any specific question about its use? | |
Re: How do you know the problem is the motherboard? How do you know it's not the hard drive, etc. | |
Re: I'm a little confused, because you have MySQL queries such as `SELECT * FROM tbl_top_category WHERE show_on_menu=1` but it doesn't look like `tbl_top_category` has a `show_on_menu` field? Either way, I guess you can do something like: SELECT CONCAT(ecat_name, '/', mcat_name, '/', tcat_name) FROM tbl_end_category AS end INNER JOIN tbl_mid_category AS … | |
Re: Something like this: <?php // Connect to the database and create a MySQL resource handler $mysqli = new mysqli("localhost", "my_user", "my_password", "world"); // Get variables from a form submission, and escape them so they'll be prepped to use in a database query // and not at risk of an SQL … | |
Re: Hi there and welcome to DaniWeb! I have over 20 years of experience in SEO, so feel free to ask any questions and I'll try my best to answer them. | |
Re: I have no clue what anyone here is talking about. But welcome to DaniWeb lol. | |
Re: Can you please copy/paste all your code here because I’m not seeing an object called str in the screenshot. | |
Re: What code do you have so far? Where are you stuck/confused? What errors are you getting? | |
Re: I think rproffitt is pointing out that you may have a typo where you put a / character before $goodsID_c. That being said, you have a whole bunch of things wrong here. Firstly, do not ever not escape user-defined variables passed into MySQL. On line 89, you should be using: … | |
Re: rproffitt, what's wrong with the product? Looks like it has a lot of positive reviews, at first glance? | |
I've tried absolutely everything!! How can I flush the output buffer in CodeIgniter from within either my controller or my view?? They use some weird double/fake output buffer or something. Grrr! | |
Re: print '<option value="'.$row ['annee'].'" >'.$row ['annee'].'</option>'; I think what rproffitt is referring to is the space between the array's variable name and the array index. It should be `$row['annee']` with no space between the `$row` and the `[`. | |
Re: Welcome to DaniWeb!! I have many decades of experience in SEO so feel free to ask a question or start up a discussion. | |
Re: This is an ordered list: 1. Item One 2. Item Two 3. Item Three and its HTML looks like: Begin Ordered List Element List Item One List Item Two List Item Three Close Ordered List Element <ol> <li>Item One</li> <li>Item Two</li> <li>Item Three</li> </ol> This is an unordered list: * … | |
Re: Can you please show us what code you have already for this homework assignment, along with where you're confused/stuck, what error messages you're getting, etc? | |
Re: Maybe because he’s interested in programming and also interested in Magic the Gathering? When I was in middle school, I was morphing my skills from QBasic to Visual Basic, and I was also honing my touch typing skills, and loved using Mavis Beacon. So I wrote a Mavis Beacon clone … | |
Re: ABSPATH is static, right? Remove the single quotes around it and that should do the trick. | |
Re: Hi there and welcome to DaniWeb!! Thanks for joining. What are neck joints? I’ve never heard that term before as it relates to image manipulation. | |
Re: So sorry, but this is an English language community and so I don't understand what you're asking. How can I help? | |
Re: Hi there. So nice to meet you. Welcome to DaniWeb!! rproffitt, I would assume that all fish eaten in Sweden are Swedish fish. | |
Re: Sorry, we won't just do your homework for you here at DaniWeb. Please post the code you have so far along with where you're stuck, what's confusing you, where any errors are, etc. | |
Re: Hi and welcome to DaniWeb. Is that you?? What are you trying to do to the photo? | |
Re: The code you are providing is just a simple HTML file upload form with nothing special about it. The capture property is a hint directed to the web browser the desired use case is for the end user to use the device's native media capturing capabilities to capture something to … |
The End.