-
Replied To a Post in A script to allow users to change their password
Debug your code. The simplest way is to echo something every step of the way, so you can see to where the code goes. If you have a decent debugger, … -
Endorsed Reverend Jim
-
Endorsed Reverend Jim
-
Endorsed Reverend Jim
-
Replied To a Post in How can I resset my wifi password
You can do that by entering the configuration of your router. Please see the manual for your specific brand and type. -
Replied To a Post in A script to allow users to change their password
What exactly is causing your headache? Explain your issue(s). -
Replied To a Post in ERROR: Could not load file or assembly 'MySql.Data, Version=8.0.17.0....
Your project references an older version. Remove the reference to MySql.Data, save the project, then readd the reference to the version you have. -
Replied To a Post in Hello Everyone - I am a Web Developer
Welcome. -
Endorsed JamesCherrill
-
Endorsed JamesCherrill
-
Endorsed cereal
-
Endorsed JamesCherrill
-
Replied To a Post in Othello project
All empty cells that are adjacent to pieces of the opposite color are candidates. I think you should start with that. Once you have that, you can remove the ones … -
Endorsed rproffitt
-
Endorsed rproffitt
-
Endorsed rproffitt
-
Endorsed rproffitt
-
Endorsed rproffitt
-
Replied To a Post in Hello all, again
Hey! Still not much time at the moment, but seeing the traffic, wondering if writing some tutorials might help. Don't have any topic in mind yet though. -
Endorsed alan.davies
-
Replied To a Post in "Syntax Error in INSERT INTO Statement" - VB.Net and Access
Duplicate? https://www.daniweb.com/programming/software-development/threads/521430/syntax-error-in-insert-into-statement-error-in-vb-net-programming-while-adding-a-record-in-access-database -
Replied To a Post in PHP Search Engine For MySQL Database - Searchable MP3/Audio Database
No responses yet... did you get anywhere with your questions yet? 1) Searching across all columns: to do this you need to build a query containing all the columns you … -
Replied To a Post in sign in and logout not working
What exactly is not working? -
Replied To a Post in export excel work in localhost but cannot work in server
What exactly isn't working? Do you see an error message? -
Replied To a Post in how to display data by date with php
If that is all your code then the `$conn = sqlsrv_connect()` is missing. -
Replied To a Post in "Syntax Error in INSERT INTO statement" error in VB.Net Programming while Adding a Record in Access Database
Here's an introduction into debugging: https://docs.microsoft.com/en-us/visualstudio/get-started/visual-basic/tutorial-debugger?view=vs-2019 -
Replied To a Post in "Syntax Error in INSERT INTO statement" error in VB.Net Programming while Adding a Record in Access Database
What happens if you set a breakpoint at the start of that method and step through your code? -
Replied To a Post in "Syntax Error in INSERT INTO statement" error in VB.Net Programming while Adding a Record in Access Database
I'm not entirely sure that your last error message is something caused by the shown code. What line is causing the exception exactly? -
Replied To a Post in ASP.NET Web Developmental Environment
> how to set up Full-Stack ASP.NET Web Developmental Environment Install Visual Studio 2019 perhaps? What is your definition of "Full-Stack"? -
Replied To a Post in Type password with editor for
> I have tried password for but it makes changes to web design You can fix this with CSS. -
Replied To a Post in mysqli_select_db() expects parameter 1 to be mysqli, string given in C:\wa
Please start a new discussion and post your code too. -
Replied To a Post in Hello all, again
Thanks > Also, if you think you are busy now, wait until you have children! Not happening. EVER. I'll stick to pets/animals. -
Replied To a Post in Issue Adding new user to mySQL database
Instead of mysqli_query($con, $insertuserquery) or die("6: Insert User Query Failed"); do this: mysqli_query($con, $insertuserquery) or die("6: Insert User Query Failed" . mysqli_error($con)); and it might tell you why it fails … -
Replied To a Post in Hello all, again
Okay, not so great. Hope you can keep everything in check. Changed jobs, married, moved and busy getting this house in order mostly. Indeed, big difference ... need sometime getting … -
Created Hello all, again
It's been a while ;) Still very busy, but hoping to pop in on a regular basis. How's everyone been? -
Edited get current values from form and store in to database
i did one quiz application using php..in that i display 3 questions from database depending on the category the user select...i display one question per page..when user click on next … -
Replied To a Post in Looking for a WordPress theme
I'm really out of touch with WP, being used to building CMSes myself. Just too much info at once to get where I want to be. I have a theme … -
Gave Reputation to diafol in Looking for a WordPress theme
Your site is pretty minimalistic, so a bare bones theme like underscore or one of the yearly releases like twentysixteen (etc) may be of use. However, they are very bare … -
Created Looking for a WordPress theme
I am new to WP (trying to help my partner), and looking for an easy to use theme that kind of looks like what I have at pritaeas.net. Basically I … -
Replied To a Post in Automated internet search algorithm
Perhaps https://www.toptal.com -
Replied To a Post in Automated internet search algorithm
> are the experts who can do this rare? Any decent software engineer should be able to build this. I mentioned a data analist, because they have a clearer understanding … -
Replied To a Post in Automated internet search algorithm
Basically you are building Google Alerts, but for more sources and with more restrictions. You'll need to integrate with news sources, or search engine APIs to extract the information you'd … -
Replied To a Post in Sum to Root
One `)` too much. -
Edited Fill height and vertical align center
Time for a real challenge. https://jsfiddle.net/u6n3dq9m/4/ Is what I've got. I'd like the red portition to spread over the div, and fill entire height, while You can't/Tried but failed: - … -
Replied To a Post in Fill height and vertical align center
Before other people start whining, can you please fix your HTML, the snippet has unclosed tags (probably a copy/paste issue). -
Replied To a Post in Ajax Request Problem
Line 5 and 6 defines: type: "Get", data: { "code": data }, so line 3 should be: $d_f = $_GET['code']; -
Replied To a Post in Using XML as a Table In Delphi
> I want to get the result of webservice methode as a Table; Not sure how to put XML in a Table component. > but it raise a run time … -
Replied To a Post in Drawing lines on C# web application
Next time, create a new thread, instead of replying to a 6 year old thread. Add a div (or other container to your page) and set the left or right … -
Replied To a Post in What is correct regex for alphanumeric and space
The following should match: /[\w ]+/ or: /^[\w ]+$/ You are missing a repeater, so your regex only checks the first character (J). The regex above matches one or more … -
Replied To a Post in Using XML as a Table In Delphi
IIRC a `DataSet` has a `LoadFromFile` method which you can use to read the returned XML.
The End.