-
Replied To a Post in The future of DaniWeb
I have to make a feature request though. Would you be so kind as to block url's in the chat. It's getting spam links now too, instead of just links … -
Replied To a Post in Artificial inteligence system
Haha, no thanks. Had some theory in uni, but am not interested. -
Replied To a Post in Artificial inteligence system
:) I was expecting someone to post that in response to your reply. -
Gave Reputation to rubberman in Artificial inteligence system
First, study AI for about 4 years at a college level. Next, learn CLIPS because an inference engine needs a rule engine to work. While you are doing that, learn … -
Replied To a Post in Update multiple rows using checkboxes
> My code is not working What exactly is not working? Any errors? If you echo the query, what do you see? -
Replied To a Post in Aloha
Welcome to DaniWeb. -
Replied To a Post in Populate Dropdown from DB - Performance
jQuery UI has an [autocomplete](https://jqueryui.com/autocomplete/) control. On typing it requests new items from the server so there is no need to load them all at first. -
Replied To a Post in Populate Dropdown from DB - Performance
Could you explain the point of 160k items in a dropdown. -
Replied To a Post in Any way to block unsolicited contact requests in Skype?
Skype 7.8.64.102, In menu Skype - Privacy. Although sometimes some get through anyway. -
Replied To a Post in ShieldUI JavaScript Chart - data display problem
So what is the problem? -
Edited Read This Before Posting A Question
# NOTE # This was a PHP sticky, and I am working to turn it into a development sticky. If you have any comments, additions or other observations, please reply … -
Replied To a Post in small expenses application
> But where do I calculate the total income, expenses and effective total? Just use LINQ to Entity. There is no need to store totals, unless your database gets so … -
Edited Populate Dropdown from DB - Performance
Hello everyone, I am populating a dropdown list in my webapp, from a MySQL database table. There are around 160,000 records in the table. When I start my webapp and … -
Replied To a Post in Health app reload!
> PatientA has Jab 1 and 2 and that PatientB has Jab 1,2 and 3: what data ends up in the JabPatient table? The link table would contain the following, … -
Replied To a Post in Count Function is not working
> i am getting Fatal error: Call to a member function fetch() on a non-object in line 4 Hmz. Shouldn't you be returning the result object, instead of `$query` ? -
Replied To a Post in Painful bug becomes costly
> There's nothing wrong with AWS Am certainly in agreement. I am just used to having support that will help you resolve such issues quickly. If they agree he has … -
Replied To a Post in Count Function is not working
This line returns an array of rows containing the count: return $row_count = $query->fetchAll(); What you should return is the first entry in that array: $row = $query->fetchAll(); return $row[0][0]; … -
Replied To a Post in Call MVC controller from ASP.NET
Using Javascript/jQuery to do an AJAX call is not mentioned. What exactly is the situation you have? Do you have control over the code? Sounds like that controller code should … -
Replied To a Post in Painful bug becomes costly
Am also amazed that they weren't able to do the shutdowns quickly for him. They just told him you have 20 more running. -
Edited retrieving my old username
hi there, Please let me know about how I can retrieve the password for my old username because when I try the forgot password thing, it does not work. -
Replied To a Post in Painful bug becomes costly
> should not have published what amounts to username+password data to a cloud based service Agreed, I would not post any such key to the cloud. I just don't trust … -
Created Painful bug becomes costly
https://www.humankode.com/security/how-a-bug-in-visual-studio-2015-exposed-my-source-code-on-github-and-cost-me-6500-in-a-few-hours -
Replied To a Post in What is the difference between DDL and DML?
http://www.orafaq.com/faq/what_are_the_difference_between_ddl_dml_and_dcl_commands -
Replied To a Post in Problems with SelectOption
Your file ends with `.html`, try changing it to `.php` to get the php interpreter to parse it. -
Replied To a Post in Presentation Remotes?
What brand of remote? Does it have a special driver? Did you check with the manufacturer? -
Edited Trigger
this is my first time of creating trigger..I tried to create trigger using mysql to count how many 2007 data in the table when inserting new record but it not … -
Replied To a Post in how to search a string
I suggest you use: SELECT routeName FROM route WHERE routeName = :route and then bind `$routeName` without `%` pre- and appended. That way you check only exact matches. -
Replied To a Post in multiple values on one row
> I press the </>code and >_Inline code tabs. Neither of them open the dialog box Only `</> Code` should open a dialog. What browser are you using? Any interfering … -
Replied To a Post in talk about "Common Issues with MySQL and PHP"
> Also has anyone tested the option of saving images in the DB as BLOB and the performance of that Performance is acceptable in most cases, but you cannot take … -
Replied To a Post in talk about "Common Issues with MySQL and PHP"
> I believe that this tutorial should be linked in the "read first" section Just did that btw ;) -
Replied To a Post in how to search a string
What exactly is the problem? -
Edited Read This Before Posting A Question
# NOTE # This was a PHP sticky, and I am working to turn it into a development sticky. If you have any comments, additions or other observations, please reply … -
Replied To a Post in Show window.open popp on navigation away from current pag
Not sure, I think the onbeforeunload is triggered only once. -
Gave Reputation to diafol in Common Issues with MySQL and PHP
## Contents ## Overview 1. Alternatives to Deprecated mysql_* Functions 2. SQL Injection: What to do with $_POST and $_GET variables 3. How to Insert Tablenames and Fieldnames Properly 4. … -
Edited vi editor creates bad data
Hello, I am having a very strange problem. I am entering data in a file with the vi editor, and the data is to be read by a C program. … -
Edited sql query
Please guide me. Im begginer in Sql. Im working through task tracking system in php. I need know how to display particular username details using query? Since Im getting all … -
Edited Cron Job after 30 days of submit date
Hello, I am pretty new to cron jobs, as i am sure you can tell. So.... Let me tell you a little about my project. I am trying to create … -
Replied To a Post in c++
What do you have so far? -
Replied To a Post in Using a compiler to calculate Average
How is this different from your other request? We don't provide code. Show your code if you have problems, and people here will help you. -
Replied To a Post in Reference multiple classes in an external stylesheet
Put your classes in test.css and put the following in the head of the page you want to use them: <link rel="stylesheet" href="test.css"> -
Replied To a Post in table showing same sql entries for two different field
> When the program runs it shows the name place for both name and location. Check what is actually in the database first. -
Replied To a Post in Autocomplete wont return values
My guess is if(isset($_REQUEST['select3'])) is false. -
Edited How to upload and save multiple photo in database
my code cannot send all image data. it sends odd or even no of data.please help <?php session_start(); include("dbcon.php"); if (isset($_POST['submit'])) { $j = 0; //Variable for indexing uploaded image … -
Replied To a Post in Show window.open popp on navigation away from current pag
Did you use the `window.onbeforeunload` event? -
Replied To a Post in call a function from another file php
So it is necessary, but you haven't. I suggest you add that first. -
Replied To a Post in call a function from another file php
Sender::sendEmails(Sender::E_NEW_APPOINTMENT, $ca); Perhaps because `$ca` is `null`, don't you need to initialize it? -
Gave Reputation to cereal in Determine week number and select group
Maybe https://xkcd.com/149/ -
Replied To a Post in Determine week number and select group
A what? -
Replied To a Post in Tiny mce
It transforms a regular textarea in HTML into a full blown editor, similar to the one you typed this post in. -
Replied To a Post in Determine week number and select group
floor(53 / 9) returns 5 entire blocks. The remainder is 8 (53 - 45) so C will handle that one.
The End.