15,116 Topics

Member Avatar for
Member Avatar for tawanprp

Hi i'm a beginner in Java. I have school assigment where they want to save employee array to the file and can load it back with replacing the current array in GUI when it hit button save or load. Also, if i want to save or load the array with …

Member Avatar for freesoft_2000
2
153
Member Avatar for surveypacific

What is a “MIME type”, what does it consist of, and what is it used for? can anyone pls provide with example?

Member Avatar for JeanMilburn
-1
257
Member Avatar for Tafadzwa_2

JQ is taking a car trip with his family. On the trip, he will stop for fuel, food or lodging. When stopping for gas, JQ will record the amount of fuel he is willing to pay for. When the family stops for lodging, they will also have a meal. JQ …

Member Avatar for rproffitt
0
78
Member Avatar for Greg_11

I have a project where I need users to be able to save their work, then at a later date select the session/data from their previous work and continue. I have completed all of the coding (and it works) to save the current session under their userid, and populates a …

Member Avatar for JeanMilburn
1
355
Member Avatar for discuss
Member Avatar for BluMess

Hi, I'm having trouble using the $(this) identifier in JQuery. I'm using the qtip plugin, and I want to send an ajax request, which can be done with the plugin. I'm trying to pass the id of the element to the script but it's not seeming to work - the …

Member Avatar for Moshe_2
0
12K
Member Avatar for james702

Hello everyone! The handoff between design and development has always been torture for me. I know that there are several cool handoff tools, that can ease the process, but recently I've read an article https://ester.co/blog/figma-vs-sketch and an idea come up to my mind. Do these design tools have any relation …

Member Avatar for rproffitt
0
33
Member Avatar for gaauiop5

I'm trying to redirect user to "userinfo.php" after successful registration, but the browser terminates the redirection because it goes into endless loops.

Member Avatar for Dani
0
35
Member Avatar for Luxiaoxian

def fib(num): if num<=1 return num return fib(num - 1) + (num - 2) num = int(input("enter a number higher than 0: ")) print(fib(i))

Member Avatar for John_165
1
76
Member Avatar for Emeka_2

Hi all,` The below code is giving me problems. <?php $ddaa = $pdo->query("SELECT id, stockname, stockno, producer FROM storemaster order by stockname");; while ($data = $ddaa->fetch(PDO::FETCH_ASSOC)) { echo '<option value="'.$data['stockno'].'" data-producer="'.$data['producer'].'"> '.$data['stockname'].'</option>'; } ?> This is the script: <script> $('#stockname').on('change',function(){ if($(this).val() !=0){ $('#stockno').val($(this).val()); $('#producer').val($(this).attr('data-producer')); } }); </script> All I wanted …

0
48
Member Avatar for Greg_11

I am trying to hide a radio button based on wether or not a user is an admin <?php if (($_SESSION['admin']) == 0) ?> <script>document.getElementById('adminbutton').style.display = 'none' </script> <?php if (($_SESSION['admin']) == 1) ?> <script>document.getElementById('adminbutton').style.display = 'block' </script> Obviously the above doesn't work.. Any help is, as usual, greatly appreciated. …

0
84
Member Avatar for Jaayy909

Hi Guys, I have been recommended to join up with a company called [Appoly](https://www.appoly.co.uk/) to complete my mobile application, would this be a good idea? If anyone could help me out, I would appreciate that. :)

Member Avatar for rproffitt
0
37
Member Avatar for 652yokohoma
Member Avatar for MiltonVines2020

Help me to solve the task. Create function which consider letter in word. Example: func(“Eduard”) return E: 1, a: 1, d: 2, r: 1, u: 1

Member Avatar for rproffitt
0
31
Member Avatar for Darren_8

Hello Member, I am doing front end development from the last 2 months. I have got 1 project from a client. Almost the work is completed but now the client is also demanding for right click disabled for all webpages something like [this](https://www.usersadvice.com/). I have done it but the source …

Member Avatar for rproffitt
0
54
Member Avatar for mekineer

I would like to start building a search database, by providing a portal for users to search a search engine, like Google. Is it possible for a visitor to the portal site, to present to Google their own IP address, instead of the portal site's IP address? Is it also …

Member Avatar for Web_14
2
300
Member Avatar for Xozz

Hello. Is there anybody here who's eager to help me building a webgame? It's mostly written in PHP and there are some Javascript and CSS files included. I put it on Github. I haven't been using a framework (yet). If you first want to know more, just ask (of course). …

Member Avatar for Xozz
0
125
Member Avatar for sonalid1701

Heya, have been in the lookout for some good Javascript resources. So far have been [practicing](https://www.interviewbit.com/javascript-interview-questions/) from Interviewbit, Edureka and those freely available sources on the net. It would be great if ya'll could share few important topics that are most likely to be asked in the interviews as well …

Member Avatar for rproffitt
0
54
Member Avatar for bprosic

Hi, how can I use regex or string replace to add missing "p" tags to sentences without tags. I tried matching* and splitting first the whole string matching "h" and "pre" tags but dont know how to merge it. `*let regexRule = /<pre>(.|\n|\r\n)[\s\S]*?<\/pre>/g;` Example - input let someVariable = "Basket …

Member Avatar for Diafol_2
1
1K
Member Avatar for SabithaSri
Member Avatar for Naj_1

Hi everyone, I am currently building a wordpress site related to the photo which will be used to carry out many social projects. It's been months that I block on one subject, I am looking desperately for a person who would have the kindness and the skills to bring me …

0
193
Member Avatar for Lonx

Good day y'all, Im an intermediate Python dev and I've just finished building my first major Python project with UI. I tinkered a lot with tKinter (pun almost unintended) and even tried PyQT5. Both of these are time consuming to work with and tKinter's GUI looks like it shouldve been …

0
49
Member Avatar for Nosipho_1

um i am so bored at school i hate my teachers , school, and all the subjects i want to make fast money so i think i have a solution for my problem since i am a trap music girl i am in love with cardi b i would love …

Member Avatar for John_165
0
70
Member Avatar for Eugene_15

I need to refresh my div tag (galleryadv) after ajax post submits to prepare for the next submit. But after submit successfully and refresh, my customized selection tag always changes to the default selection tag. would need some help to resolve my customized selection tag background color, it changes back …

Member Avatar for Dani
0
71
Member Avatar for zetaholmes

I'm experimenting with nodejs/coffeescript and also the jade engine. I see from examples that setup seems pretty usual. app = express.createServer().listen process.env.PORT app.configure -> app.set 'views', __dirname + '/views' app.set 'view engine', 'jade' app.set 'view options', layout: true app.use express.bodyParser() app.use express.static(__dirname + '/public') app.use app.router app.get '/ekmHoliCal/index', (req, res) …

0
27
Member Avatar for duptiagnas

hi teams, i trying to sum value from selected radio button, but it not working, can you help me out ? any help is appreciated <!DOCTYPE html> <html> <body> <h1>Display Radio Buttons</h1> <form action="/action_page.php"> <br> <label class="radio-inline"> <input class="r1" type="radio" name="a1" value="10">Option 1 </label> <label class="radio-inline"> <input class="r1" type="radio" name="a1" …

Member Avatar for Emmason
0
723
Member Avatar for Syed_22

Hi guys can anyone help me i need to learn how to use OR and AND in loop conditions using javascript

Member Avatar for Emmason
0
62
Member Avatar for nishita_1

Please Help me. I am coding PHP using below code but out put is not perfect. i am also attach output picture below. <?php require_once 'core.php'; include_once("../fpdf182/fpdf.php"); $pdf = new FPDF(); $pdf->AddPage(); $pdf->setFont("Arial","B",16); $orderId = $_POST['orderId']; $sql = "SELECT orders.order_id, orders.order_date, customer.customer_name, customer.customer_mobile, orders.sub_total, orders.vat, orders.total_amount, orders.discount, orders.grand_total, orders.paid, orders.due, …

Member Avatar for Dani
0
710
Member Avatar for alexxnorton01

Hi Guys, I am new here I found this forum very well managed this is very satisfactory. I am new in affiliate marketing as well and want to create affiliate website and was looking for solution with data API. Could anyone help me in this regard, I found a solution, …

Member Avatar for Dani
0
67
Member Avatar for Sananil

Hi, first of all let me thank anyone willing to help out with this. Jquery / Ajax update Span or Div by ID without refreshing page <?php } $select = $DatabaseCo->dbLink->query("select sh_id from shortlist where to_id='" . $Row->matri_id . "' and from_id='" . $user_id . "'"); if (mysqli_num_rows($select) == 0) …

Member Avatar for Biiim
0
4K

The End.