-
Replied To a Post in Is it realistic to pursue a career in programming?
I'm curious as to why you think your age stands in the way as a data analyst, but it won't as a programmer? I hate to say it, but I … -
Replied To a Post in Is it realistic to pursue a career in programming?
If you have previous experience with databases, I don't see why it would make sense to shift completely away from that and start at ground zero as a complete newbie. … -
Created I know macs are not for gaming but...
Hello everyone,, Okay so I play this game called x-plane on my 2016 mpb base model. It runs decent given its specs and it’s a Mac. Now I know macs … -
Created Data Science
I have been in involved in the core IT field for 5 years. Recently, there is an ongoing fad about Data Science. I am not sure if I should change … -
Created Hello every one
is there any one who can help me please? i have sensor data set and I don't know how to split this. I am using python iam=TP-001&bdaddr=F8:5B:9C:60:0F:B0&data=0201061bffee02c306007a001800000000000000520007e304100c2b36ffaa -
Created Resume
What is the the best website to build up your resume? -
Replied To a Post in Is it realistic to pursue a career in programming?
> 1) Is it realistic to even consider this as a career for the next 10 years for someone my age? Assuming it is, Programming is a *huge* industry. Everything … -
Began Watching Is it realistic to pursue a career in programming?
Group, I've dabbled in coding (both front end and back end) since the mid 1990s. However I've never done it full time (except for a short stint writing database query's … -
Tweeted Allow user to enter word found in grid
Input: grid[][] = {"axmy", "bgdf", "xeet", "raks"}; Output: Yes a x m y b g d f x e e t r a k s Input: grid[][] = {"axmy", "brdf", … -
Replied To a Post in How to use more than one form action URL in PHP?
If your form includes two submit buttons that each need to do something different, you can use AJAX (Javascript on the front end) to override the form action based on … -
Began Watching How to use more than one form action URL in PHP?
I need to add couple of php page as from action like, <form action=“one.php”, “two.php” method=“POST”> The code above is not working, how can i use more than one form … -
Replied To a Post in how can i fix this annoying error in my welcome page
Are you getting any more errors? If not, can you please mark this question solved. Thanks! -
Replied To a Post in I need to set up PayPal IPN masspay but I am having problems
Were you able to get this done? -
Replied To a Post in How to display $row as images?
Were you able to figure it out? The code would be like this: echo str_repeat("<img src='../public/images/star.png' height='20px' width='20px'/>", floor($row['average_rating'])); More information at https://www.php.net/manual/en/function.str-repeat.php -
Replied To a Post in Undefined variable - row
I think the reason you haven't received any responses is because your question is confusing. What do you mean by define said row? Which row? Define in which way? I … -
Began Watching Undefined variable - row
I'm a novice in PHP and I would like to know on how exactly could I define said row. Any helps/tips are appreciated. Thank you in advanced! function add_review() { … -
Replied To a Post in What is the cause if your PHP page goes blank
I’m on my phone so I can’t type much but blank pages are due to php fatal errors. Typically these are syntax errors, calling functions/methods that don’t exist, etc. You … -
Began Watching What is the cause if your PHP page goes blank
hi it is me again, this is my assignemet been trying to fix this php script for a long time first to begin, it was issuing an error, Warning: join(): … -
Replied To a Post in Could you please recommend me some theme like TasteM4 of Mobirise
So you View Source each site you visit as you browse the web? I think if you have to View Source in order to tell, then it’s not obvious :) -
Replied To a Post in Could you please recommend me some theme like TasteM4 of Mobirise
I disagree. WordPress now powers more than one third of all sites on the Internet. Sure, you might stumble across a typical blog and instantly think WordPress. But there are … -
Replied To a Post in Could you please recommend me some theme like TasteM4 of Mobirise
> I find that a lot of folk won't ask the site owner the questions. Why is that? Because, while it may be the case that imitation is the best … -
Replied To a Post in Request Password Change (PHP+MYSQL)
I see you marked this thread as solved. Do you still need help with code to change password? I suggest you begin by using the password_hash() function for joining and … -
Replied To a Post in Request Password Change (PHP+MYSQL)
So it looks like you are storing passwords in plain text in the database. NEVER. EVER. DO. THIS. It is *incredibly* insecure. Please look into PHP's password_hash() function. -
Replied To a Post in Request Password Change (PHP+MYSQL)
That’s the thing. We need to see your register and login code in order to give you the code for password change. Otherwise, without it, the best we can offer … -
Replied To a Post in Request Password Change (PHP+MYSQL)
So I’m confused. You’re asking for help writing the PHP code that can be used to do a lost password reset, but you don’t have code for a signup or … -
Replied To a Post in Could you please recommend me some theme like TasteM4 of Mobirise
Rproffitt, When I started DaniWeb, I launched it on the phpBB platform because I couldn’t afford a $100 vBulletin license. From a developer’s perspective, you may think $100 is almost … -
Began Watching Could you please recommend me some theme like TasteM4 of Mobirise
Today I've found this theme: https://mobirise.com/extensions/tastem4/?utm_source=extension_list&utm_medium=program&utm_campaign=win_4.9.7 I do really like the demo and blocks but it's too expensive for me. Could you please recommend something like that but cheaper. Thanks … -
Replied To a Post in How do I create a python code for this
It looks like you just want us to do your homework for you. Pseudo code is English that describes the steps needed (in English) to accomplish what you’re trying to … -
Began Watching How do I create a python code for this
Hi all, I need to create a program on python that: At the start a 4 sided dice is thrown and a 12 sided dice is thrown to calculate two … -
Replied To a Post in Undefined property: stdClass::$theme in Codeigniter
Maulik_4, can you show us MY_Controller.php please so that I can help? -
Replied To a Post in Request Password Change (PHP+MYSQL)
OK, so you're connecting to MySQL via PDO. I'm personally not familiar with PDO. Is there a reason you're not using something like MySQLi? It seems as if you don't … -
Replied To a Post in How can I specify ip adress using curl
So I see you have a list of DNS servers, but I'm not quite sure why. The web server should already have a way of resolving domain names to IP … -
Began Watching How can I specify ip adress using curl
I am required to change ip adress everytime this function gets executed I am trying this code below .But I am completly confused.How can I do this function getData($domainName, $ext) … -
Replied To a Post in I need to set up PayPal IPN masspay but I am having problems
So if you want to get a cut of the transaction and forward the rest to the user, you don't want to use JSON with the Payouts API. That's why … -
Replied To a Post in I need to set up PayPal IPN masspay but I am having problems
> Hope I answered your question. Plus I love Dani Web :) Thanks so much!! -
Replied To a Post in I need to set up PayPal IPN masspay but I am having problems
So I'm actually not sure what eBay and Reddit have in common :) That aside, I don't think you can use IPN for users paying each other. The recipient's PayPal … -
Replied To a Post in How to extract record from json string to display in Jquery Datatable?
OK, so firstly, are you able to confirm that /Client/GetClientList returns something like: [{"Id":1,"FirstName":"abc","LastName":"xyz","FullName":"abc xyz"},{"Id":2,"FirstName":"qwe","LastName":"rty","FullName":"qwe rty"}] If that's true, then we can say the C# part (which I can't help … -
Replied To a Post in Introduction for new member
Hello! Welcome to DaniWeb!! -
Began Watching Introduction for new member
Hello Everyone, I am Nayna Rambhad, Digital Marketing Manager for India Infotech Company Pvt Ltd, Pune, India. I have been working with company for 2 years and have experience of … -
Replied To a Post in Need a Gaming Laptop with Solid Graphics
I had a 17” MSI gaming laptop that I was very happy with for many years. -
Began Watching Need a Gaming Laptop with Solid Graphics
After months of waiting, I am ready to invest in a gaming laptop with all the features included. Looking for something with great graphics and performance, possibly 16GB Ram. My … -
Replied To a Post in how can i fix this annoying error in my welcome page
You don't have a semi-colon after `header("location:login_user.php")` It should be `header("location:login_user.php");` It says the } is unexpected because it sees a } immediately after that line without a semi-colon first. -
Began Watching how can i fix this annoying error in my welcome page
I am doing this assignment i have to redirect the login page to the welcome back page to authenticate the use identity but i am getting this error in the … -
Replied To a Post in can someone please tell me what and where the error in my insert php cod
This is a LOT of code for us to read and understand. If it's giving you an error message saying undefined index 'gender', that probably means that $_POST['gender'] is not … -
Began Watching can someone please tell me what and where the error in my insert php cod
this assignmet call for inserting data into the database and also retrieve. at one time it was inserting into the database but for strange reason it just stop inserting, i … -
Replied To a Post in Request Password Change (PHP+MYSQL)
You need to provide some more information in order for us to be able to help you. I see here you are giving us an HTML form that asks a … -
Began Watching Request Password Change (PHP+MYSQL)
Hello i have this form and my php code skills not very good if someone make change password I would be glad thank you <div class="col-lg-9"> <div class="nk-box-3 bg-dark-1"> <form … -
Replied To a Post in Go back to Mobirise after the purchase
I concur with rproffitt's assessment that if you want the form to send an email, it needs to be hosted on a server that is capable of sending out email … -
Began Watching Go back to Mobirise after the purchase
I created a small landing page in Mobirise. I'm selling hand-made soap. I want my customers could go back to my page after the purchase but I don't know how … -
Replied To a Post in How to extract record from json string to display in Jquery Datatable?
So, just to make sure we're on the same page, you're using the https://datatables.net/ jQuery plug-in? Because that table takes an existing HTML-based `<table>` and adds some UI widgets to …
The End.