8,966 Posted Topics
Re: So what is the problem? | |
Re: > 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 plugins? Apart from that you can paste your stuff, then select all text and press tab to indent as code. | |
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 | |
Re: Please provide a more detailed example of what you want to achieve. | |
Re: What brand of remote? Does it have a special driver? Did you check with the manufacturer? | |
Re: 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. | |
Re: 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]; // first row, first column Since you only retrieve one row, this is better IMO: $row_count = 0; if ($row … | |
Re: > I believe that this tutorial should be linked in the "read first" section Just did that btw ;) ![]() | |
Re: 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 be in a shared assembly. | |
Re: Am not sure whay you mean by "post in the middle", but perhaps you are looking for a "Torx TR" (or TS). | |
Re: Your file ends with `.html`, try changing it to `.php` to get the php interpreter to parse it. ![]() | |
Re: Did you use the `window.onbeforeunload` event? | |
Re: 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"> ![]() | |
http://blogs.msdn.com/b/cdndevs/archive/2015/08/14/intel-just-open-sourced-stephen-hawking-s-speech-system-and-it-s-a-net-4-5-winforms-app.aspx TL;DR: [GitHub repository](https://github.com/01org/acat). | |
Re: > When the program runs it shows the name place for both name and location. Check what is actually in the database first. | |
Re: Get a lot of threads on the topic first, so there is a reason to add new (sub)forums. Apart from that, put them in Web Design, HTML and CSS and tag them accordingly. | |
Re: My guess is if(isset($_REQUEST['select3'])) is false. | |
Re: How are you creating your FileSystemWatchers? Am pretty sure they aren't inserted into the Controls array. Wouldn't it be easier to keep track of them in a separate list? | |
Re: require '01.php'; // domain includes might not always work Sender::sendEmails(E_NEW_APPOINTMENT, $ca); | |
Re: It transforms a regular textarea in HTML into a full blown editor, similar to the one you typed this post in. | |
Re: floor(53 / 9) returns 5 entire blocks. The remainder is 8 (53 - 45) so C will handle that one. | |
Re: Welcome to DaniWeb. | |
Re: @rubberman, it was downvoted because there have been more questions like this lately serving as a spam trap. The OP will not come back and this thread will just get more replies with spam links (like the one above, which is already edited out). If the OP proves me wrong, … | |
![]() | Re: When you select them you can use `ORDER BY RAND()`. |
Re: https://dev.mysql.com/doc/refman/5.7/en/select-into.html Scroll down to `SELECT ... INTO OUTFILE`. | |
| |
Re: http://php.net/manual/en/language.operators.comparison.php Scroll down to "Ternary Operator" | |
Re: > this system will be access via their phone What language/platform are you building this phone app in? Accessing the phone's camera should be in the SDK. | |
Re: http://php.net/manual/en/language.operators.string.php | |
![]() | Re: > I am trying to figure out how to parse JSON in C# http://www.newtonsoft.com/json |
Re: Did you check if you have an ODBC driver for the database you are trying to connect to? | |
Re: http://php.net/manual/en/function.mail.php Scroll down. You need to set a header with a content type. By default `mail` sends plain text. | |
Re: A search will show you plenty of options. | |
Re: `DateTaken` is defined in the inner block of the `try` and `catch`. That means, as soon as the block closes, the variable is out-of-scope. You'll need to define the string before the `try` to be able to use it after. string DateTaken; try { // omitted DateTaken = ascii.GetString(TakenDate.Value, 0, … | |
Re: Nice example. Any particular reason you use `T` in the first and last three methods, yet `dynamic` in the others? | |
Re: Looks like XML. Seriously, without any additional information we can only guess what you are doing. | |
Re: Just a note, this is also popular: background-image: url("//mysite.com/images/logo.jpg"); because it works on both http and https without getting insecure content messages. You may want to check for those too. | |
Re: > I don't know what unity3d is It's a [game engine](http://docs.unity3d.com/Manual/index.html). | |
The End.