-
Replied To a Post in I need help inserting data into MySQ database via PHP
Assuming your not going to take diafol's advice, here's the quick fix: $query = "INSERT INTO admin (username, hash, email) VALUES ('$username', '$password', '$email')"; -
Created Mime type
Does anybody have a definite reference to whether the mimetype of an AutoCAD 3D STEP file (.stp) is `application/STEP` or `application/x-step`? -
Replied To a Post in Auto login to external website from my page
Then again, what exactly happens? Any errors? Are you sure the external website allows the remote login? -
Replied To a Post in C++ free download links
Why don't you download Visual Studio Community Edition? -
Replied To a Post in Auto login to external website from my page
Not all websites allow you to do that. What exactly happens in your case? Wouldn't it be easier to use your browser's password manager? -
Replied To a Post in Native Code works with Console App but not with mvc webapp
> After I integrated it into the webapp It just would not work. What exactly does that mean? It doesn't do anything, you get exceptions, what doesn't work? -
Replied To a Post in Excel
> I would like to fill this data in from a simple form What kind of form do you have in mind? -
Replied To a Post in Unable to display filename after upload in php
> $sql = 'SELECT `id`, `name`, `mime`, `size`, `created`,`Progressid` FROM `tfile` where `id`=$row['id']'; That should give an error. Try this: $sql = "SELECT `id`, `name`, `mime`, `size`, `created`, `Progressid` FROM … -
Replied To a Post in Data entered in the form is not being sent to the Oracle Database
The above only shows your form and some validation. Where is your server side script which connects to your database? -
Replied To a Post in decryption for PBKDF2 in php
Show your code. -
Replied To a Post in decryption for PBKDF2 in php
If it is a hashed password, then it cannot be decrypted. What method did you use to hash or encrypt it? -
Replied To a Post in Unable to display report based on quarter
That shows your report. I'd like to know what your database table and records in it look like. -
Replied To a Post in Inserting thousands of records into a database
> get the ID of the last record http://dev.mysql.com/doc/refman/5.7/en/information-functions.html#function_last-insert-id -
Replied To a Post in Difference between Linux and Window hosting
Linux runs Apache as your webserver, where Windows runs Internet Information Server. -
Replied To a Post in Unable to display report based on quarter
Without knowing how your data (query result) looks it's very hard to answer. -
Replied To a Post in Stats Program
Read [our rules](https://www.daniweb.com/community/rules) (which you agreed to when signing up), especially: *"Do provide evidence of having done some work yourself if posting questions from school or work assignments"* -
Replied To a Post in Issue with Php scrip for file upload
Seems your REMOTE_ADDR is an IPv6 address containing `::1`. You cannot use colons in a filename. -
Replied To a Post in Index was outside the bounds of the Array exception
On what line is the exception thrown? The error states you are using an index greater than what is possible. -
Replied To a Post in Need solution in java for following question.
Read [our rules](https://www.daniweb.com/community/rules) (which you agreed to when signing up), especially: *"Do provide evidence of having done some work yourself if posting questions from school or work assignments"* -
Replied To a Post in Product list Prestashop
Do you have this online somewhere to see? -
Edited Product list Prestashop
Hy there... I have this problem and I don't know how to fix it....I didn't get help from the theme creator and I am asking your help:) In product list … -
Replied To a Post in Inserting thousands of records into a database
Agree with ryantroop: haven't done C++ in a while, but I'd choose to generate a SQL script file and run it on the server (don't forget to use a transaction … -
Replied To a Post in Showing Online friends
You'll need to be much more specific than that. For starters: what language are you using, and what do you have so far? -
Replied To a Post in Exceeded MySQL Connection
Try explicitly closing your connection at the end of your script. -
Replied To a Post in worker
Welcome to DaniWeb. -
Replied To a Post in protect directory php script
Did you even try the script pasted a few posts up? -
Replied To a Post in check this code
Where is `$conn` instantiated? -
Replied To a Post in Date format validation
DateTime dob = new DateTime(1980, 7, 1); TimeSpan difference = DateTime.Now - dob; Console.WriteLine(difference.TotalDays); -
Replied To a Post in Date format validation
If you subtract two `DateTime` variables, the result is a `TimeSpan`. -
Replied To a Post in Importing FedEx WSDL and VB.NET WebReference
Usually, you will add the web service reference locally in Visual Studio. When you publish your website (for deployment) all relevant files will be created for use on the web … -
Replied To a Post in Outdated information / everything has been taken care of
What exactly is the problem you are having, if any? -
Replied To a Post in Anyone Else Seeing DaniWeb Activity Dropping?
> drop in activity started when? When new changes went live. No. Wrong assumption, it started way earlier: https://www.daniweb.com/digital-media/digital-marketing/search-engine-strategies/news/459242/stackoverflow-stole-all-our-search-traffic -
Replied To a Post in trying to get data from a html file
The error suggests you have a line without a newline in that file. -
Replied To a Post in 12 images in a row, responsive, bootstrap
Are you perhaps looking for a masonry layout? http://www.bootply.com/tagged/masonry -
Replied To a Post in preg_match, match non-alphanumeric characters
lol. I can recommend RegexBuddy from JGSoft. You can build, test and store expressions. The site regular-expressions.info is a good starting point for more info on regexes. hth. -
Replied To a Post in MYSQL Query for date
Your query appears correct. If you are not getting what you need prepare a sqlfiddle for us to work with, and tell us what output you expect. -
Replied To a Post in preg_match, match non-alphanumeric characters
`/--(.*?)--/` and `/\+\+(.*?)\+\+/` should do it. Do you need them in one? `--(.*?)--|\+\+(.*?)\+\+` -
Replied To a Post in PHPMailer issue!
The above works, but it may get you blocked as a spam sender. Why can't you just add all your recipients as BCC, and send it to yourself? I see … -
Replied To a Post in display all dates with day in between two dates
http://www.brianshowalter.com/calendar_tables It shows you how to insert dates within a date range by using a query. You can use that part to do what you want. However, I strongly recommend … -
Edited FOSJsRoutingBundle not working
I am new in Symfony2. I am trying to get result from a drop-down using ajax and symfony; I did all the settings as it is which is mentioned in … -
Edited java finding the directories
OK, so i do have a perfectly good working code but im trying a different way and its bugging me why its not working. any help would be much appreciated. … -
Edited PHP objects & arrays
Hi all, Been really trying to get a grips with objects in PHP. I think my lack of understanding isn't helping here! Basically, with the help of another user here … -
Replied To a Post in Can you change the parameter names of implemented abstract class methods?
Have you tried it? Parameter names for private methods shouldn't really matter. I tried to locate it on MSDN, but haven't found it yet. -
Gave Reputation to diafol in Toggling text when clicking the header
Just added a fiddle - good stuff p :) https://jsfiddle.net/4nj7zac6/2/ -
Edited AJAX post data in Mysql
Hi I have problem to get data when insert with ajax. I have ajax.js file and here is this code: $('#text-content').keypress(function(e){ if(e.which == 13) { if($('input#enter-click').prop('checked', true)) { $('#live-send').click(); e.preventDefault(); … -
Replied To a Post in AJAX post data in Mysql
Closed. Continue here: https://www.daniweb.com/programming/web-development/threads/500929/ajax-post-data-in-mysql -
Replied To a Post in Telerik
Been using Telerik at various companies, so IMO it's widely used. My experiences are mixed. As long as you use their stuff in a straightforward way, everything is nice and … -
Replied To a Post in API integration
Are you sure that `$sentiment` and `$language` are objects? -
Edited Adding Multiple BufferedImages to one BufferedImage (Optimization)
I was wondering if it would be more efficient to render a single BufferedImage instead of rendering a bunch of BufferedImages in a double for loop? I have an idea … -
Replied To a Post in Can't insert or update data above 1000 in the database.
Hard to tell definitely from the above code, but it might be possible to create a `INSERT INTO () SELECT` which does all that work at once. If you create …
The End.