|
This is the scenario: **User A:** Access the website and choose a questionnaire. The questionnaires are separated on different pages in the same domain, for example: **Home:** "surveys.com" **Questionnaires:** "surveys.com/type1" "surveys.com/type2" After choosing one, he (**User A**) puts the following information: **1** = Recipient's email **2** = His email And then submit. **User B:** Person who received this link to the questionnaire (surveys.com/type1). **What I want to do is:** When **User B** accesses the link to the questionnaire page, it is already programmed to send responses to **User A** who left his email on the home page. My idea was … |
0
34
|
||
|
Hi Everyone! I am new here, and the main purpose of joining this community is getting some help. Actually, I am designing a PHP website where I need to fetch US vehicles data into PHP. I have already used this source to get the vehicle's dataset from here https://www.back4app.com/database/back4app/car-make-model-dataset. Still, now my client wants to include images, and according to my team we should consider a source which provides both images and other details dataset into PHP. I have done much research but unable to find such a source. I also found Teoalida's dataset very useful I am not sure … |
0
72
|
||
|
Good day, I am actually a young programmer, who wants to develop a webpage that enables someone to take a practice test. It was given to me as an assignment that determines if I will remain a programmer. I know little about PHP codes but none in Mysql. I came to the website and noticed a discussion from @broj1 with another programmer. I don't have a code in mind yet or how I should start about it but I would a really appreciate a little help. All I have been able to do is a direct html quiz and the … |
0
114
|
||
|
I have 3 radio buttons on my form A , B , C but when i clicked on A radio it shows specific dropdown which get data from database table but by fruitid 1 and when i clicked on B it will show data fruitid 2 as onnword. i need to show table data by specific fkid Id. Table name--ABC id| fruitid | name 1 | 1 | Apple 2 | 1 | Mango 3 | 2 | Veg-1 4 | 3 | Juice-1 ////////////////////////////////////////////////////////////////// <select> $getdata = mysqli_query($conn, "SELECT * FROM `ABC` WHERE `fruitid`= '$fruitid'); if(mysqli_num_rows($getdata) > 0){ while($data= … |
0
114
|
||
|
How can read line in file that line have recordor examplethe file: date new_cases new_deaths 2020-07-30 665 10 2020-07-31 590 9 2020-08-01 - 0 2020-08-02 - - 2020-06-04 738 8 2020-06-05 779 - 2020-06-06 770 5 4 line it is not record new_cases or new_deaths so wae ignore the line also line 5 but line 6 we read because it has record> after read this file the reasult is: 2020-07-30 665 10 2020-07-31 590 9 2020-06-04 738 8 2020-06-06 770 5 How can read read this line by java???? |
0
30
|
||
|
The user is going to enter the product number, then the program must be able to open the file, read the information of a inventory in the company, capture the information into an structured array and display the specific product with its information in the labels. all this using a multidimensional arrays and also the structures. currently in the execution it reads only one part of the data. I think that the direct declaration of the array is causing part of the problem, also my program is not reading and capturing well. Imports System.IO Public Class frmMain Public Structure sInventory … |
0
79
|
||
|
I am attempting to update my accounts table for the current session ID with the data posted from a form. My first prepare statement is functioning fine and can be seen functioning through the placeholder variables in the form. It is my second prepare statement that doesnt seem to be working. From what I can tell, form doesn't seem to be posting the data correctly and I am unsure what the error is. It may very well be a simple error but I am stuck. Any help would be massively appreciated! <?php if(!isset($_SESSION['account_loggedin'])) { header("Location: index.php"); } $pdo=mysqli_connect("localhost","root","root","shoppingcart_advanced"); if(!$pdo) { … |
0
52
|
||
|
How will you guide student?? |
0
60
|
||
|
My php is regularly stopping so I need some idea of database. Can you provide? |
0
69
|
||
|
Write a Python function maxaceregate(!) that takes a list of pairs of the form (name score) as argument, where name is a string and score is an Integer Each pair is to be interpreted as the score of the named player For instance, an input of the form [CKohir 73) CAshwin 33), (Kohir, 7)(Pujara, 122) (Ashwin' 00) lepresents two scores of 73 and 7 for Kohli, two scores of 33 and 90 for Ashwin and one score of 122 for Pujara Your function should compute the players who have the highest aggregate score (aggegrate = total, no add up all … |
0
54
|
||
|
Can anyone please help on this. Tenanti Version: ^5.0 Laravel Version: 7.x PHP Version: 7.4 Database Driver & Version: mysql-5.7.31 **Description**: When I install tenanti version getting an error in service provider. Illuminate\Contracts\Container\BindingResolutionException Unable to resolve dependency [Parameter #1 [ array $config ]] in class App\Providers\AppServiceProvider Steps To Reproduce: "orchestra/tenanti": "^5.0", In **appServiceProvider** page added like below. I have removed my code and showing Where i have added Tenant code. Please excuse. use Orchestra\Support\Facades\Tenanti; public function boot() { Tenanti::connection('tenants', function (Subdomain $entity, array $config) { //var_dump($entity);die; $config['database'] = "sc_{$entity->domain_name}"; return $config; }); } In **App/Config/Orchestra/tenanti.php** <?php return [ /* |---------------------------------------------------------------------- … |
0
25
|
||
|
I have a database form in Access 2016 with a field, with a pulldown menu of standard issues, that have been fixed then a field for Notes. If the issue in non-standard then the user picks "other" from the pulldown menu and makes a note of the fix in the field for Notes. Is it possible to to set the Notes field so that notes can only be entered if "other" is selected in the issues field? Can this be done with a validation rule or a code? |
0
49
|
||
|
[ATTACH=RIGHT]20145[/ATTACH][B]Building your first DYNAMIC Database application. This is Part One of a four part tutorial on how to install and use your database, Part Two will teach you how to build successful connections and Part Three will teach you how to build database interaction and management of your databases.[/B] There are tons of questions here on VB6 on how to connect to a database, how to add, delete, edit, search data within your database tables etc. This tutorial has been created to serve as a learning curve or to add more knowledge to your current code writing skills. This tutorial … |
1
1,169
|
||
|
Hi All, I am having an issues with an SQL query and I can't quite work out how to resolve it. I have searched Google for the answer but can't seem to find the solution there either. Basically I have a database andin one of the tables it has a start date column and an end date column. I have a form that you input the start date and end date range you want to search the database for and display the results. My issues is with getting the dates that are inputted on the form to display on the … |
0
49
|
||
|
Hi everyone! Do you know how to create Pizzeria Program using Python and PostgreSQL where it can keep track of the pizza orders and view the order information using Python and PostgreSQL? Technology needed: -Django for the program -Postgresql for database How it can be used: Every time there is an order, Henry will add a pizza (Pizza A, B, or C) and will input how many pizza was ordered on that day. By the end of the day, Henry will click on the "Report" button and the system will show the following info: How many pizzas in total were … |
1
53
|
||
|
For example. I have a select statement that is "select ID from students where student name ='name';" Now I don't wanna echo the student ID but I wanna store it in various where I can reuse it. How do I do it. |
1
155
|
||
|
I need help with my coding and I need to know how to configure my text for my button, Here is my code so far: class EyeSprite(Sprite): def __init__(self, game): Sprite.__init__(self, game) self.images = [ PhotoImage(file="C:\\Users\\John Magana\\Desktop\\Python Projects\\clicker game folder\\eye1.png") ] self.current_image = 0 self.current_image_add = 1 self.last_time = time.time() self.this_time = time.time() self.clickedcount = 0 self.autoclickers = 0 self.cost = 10 self.text = g.canvas.create_text(60, 10, anchor='w', fill='black', font='Arial 20', text='You have: %s click points'% self.clickedcount) self.textauto = g.canvas.create_text(60, 260, anchor='w', fill='black', font='Arial 20', text='You have: %s autoclickers'% self.autoclickers) self.image = game.canvas.create_image(145, 10, image = self.images[0], anchor='nw') game.canvas.bind_all('<Button-1>', self.clicked) global … |
0
34
|
||
|
I want to see your suggestions on comparing CPanel and FASTPANEL. I used CPanel for some time but later I changed to FASTPANEL which is absolutely free but provides you with the same opportunities. Also FASTPANEL's design looks much better than CPANEL's one. So now I can't understand why people pay for CPanel. What panel do you guys use and why? |
1
3,420
|
||
|
I'm trying to redirect user to "userinfo.php" after successful registration, but the browser terminates the redirection because it goes into endless loops. |
0
27
|
||
|
// To protect MySQL injection for Security purpose $stmt = $conn->prepare($SQuery); $stmt->bind_param("i", $user_id); $stmt->execute(); $stmt->bind_result($fullName); $stmt->store_result(); if($stmt->fetstmt->store_result() ch()) //fetching the contents of the row |
0
31
|
||
|
I'm utilizing phpMyAdmin to deal with my information bases, I have 2 tasks that utilization 2 diverse data set the first uses 'root'@'localhost' and the second is 'root'@'127.0.0.1' I don't have the foggiest idea how I wound up utilizing 2 distinctive worker however it was working fine until I attempted to alter codes with the first undertaking that utilizes 'root'@'localhost', I was attempting to choose from a table to be stacked to a DataGridView when a blunder sprung up saying "Host 'hostname' isn't permitted to interface with this MySQL worker". The second venture is working fine. This lone occurred after … |
0
12
|
||
|
I have a database where there is an table `wm` for water meters : +------+---------------+ | Code | name | +------+---------------+ | wm1 | water meter 1 | | wm2 | water meter 2 | | wm3 | water meter 3 | +------+---------------+ and another table c`ounters` where there are counters value : +------+---------+-------+------------+ | Code | Code_wm | value | created_at | +------+---------+-------+------------+ | 1 | wm1 | 100 | 2020-10-18 | | 2 | wm1 | 0 | 2020-10-19 | | 3 | wm2 | 0 | 2020-10-18 | | 4 | wm2 | 100 | 2020-10-19 | … |
1
46
|
||
|
Hi All, I would personally looking for someone from the US for a partnership. This will be something like a part-time job that needs 5 hrs per week. Requirements: US citizenship for legal issues. Basic understanding of technical - Junior Full-stack (web and mobile development) Experience working remotely. Open-minded and think out of the box. Always kind & cooperative. Compensation: Estimate $1k+ per month as a base salary and get a bonus if this works out well. DM me for more details if you have an interest. Thank you for your attention. Are you interested to get $1k per month? … |
0
49
|
||
|
What is great about Amazon is that there is no one way to start an Amazon business. From the business model you choose the products you decide to sell, there are many ways to succeed on the platform. However, the steps required to get up and running on Amazon remain the same, regardless of the type of business model and the product you choose. ## 1. First, start by deciding which business model you want to use ## * **Private Label**: Private label is the process of a retailer rebranding/renaming a product that is already being manufactured on their own … |
0
35
|
||
|
a new web devlopment tools is ready here a new web devlopment tools is ready here |
-1
17
|
||
|
Java is necessary in every field. |
0
17
|
||
|
Hello, I read here on DW [Click Here]( https://www.daniweb.com/programming/web-development/threads/108189/inserting-checkbox-values-in-mysql-php) I would like to know how to insert multiple checkbox values into multiple columns with values of "0" for no or "1" for yes. If possible I would like to keep them in an array such as: <input type="checkbox" name="animal_selection[]" value="tiger"> <input type="checkbox" name="animal_selection[]" value="rabbit"> <input type="checkbox" name="animal_selection[]" value="bear"> <input type="checkbox" name="animal_selection[]" value="zebra"> I am new to php and oop programming. I have multiple classes but I need a simple "animal" method to place in my animal class that will help me to allocate each animal to its own database column. … |
0
19
|
||
|
Can you help me decrypt the message with the given information. I figured out the first line is using Xor ciphers but how do I figure out the rest? Y[ZU[XZWZ\XXZjZ[[WWVWU Ogaqkxpgbqbfiof! Cyw'ss bun! Zqksxl cywd lnepwvs uozneh. Qjc mgabiy nfx vmz-djrhkfalfq. Xnjfx ai qjvi viqi uat pgw odjwp. The radio operators have some information that they share with you, in their attempt to decrypt the message. The information is as follows: ‐ The first character of the entire message decrypts to the number ‘5’. ‐ It is known that the first line of the message forms some sort of combined … |
1
116
|
||
|
How to create webpage How to create webpage |
0
14
|
||
|
Help me My Pc is hang right now |
0
11
|
The End.