8,966 Posted Topics
Re: Did you even try the script pasted a few posts up? | |
Re: If you subtract two `DateTime` variables, the result is a `TimeSpan`. | |
Re: 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 server (including everything needed for the WSDL). The only thing you have to do is backup and replace all old … | |
Re: What exactly is the problem you are having, if any? | |
![]() | Re: The error suggests you have a line without a newline in that file. |
Re: Are you perhaps looking for a masonry layout? http://www.bootply.com/tagged/masonry | |
Re: `/--(.*?)--/` and `/\+\+(.*?)\+\+/` should do it. Do you need them in one? `--(.*?)--|\+\+(.*?)\+\+` | |
Re: 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. | |
Re: 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 MailChimp mentioned in your of your functions. Why not use that to send your e-mails instead? | |
Re: 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 using a date table as described in the post. | |
Re: > is there a native method? I don't think so. I think you'll have to loop through your columns and rows and create the array from there. | |
Re: 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. | |
In response to [this thread](https://www.daniweb.com/programming/web-development/threads/499762/jquery-for-dropdown-textbox) I've decided to paste the linked example as a code snippet (updated to html5/jQuery2). ![]() | |
Re: Your code is connecting every run of the loop. This may cause connection issues, as you are not explicitly closing/clearing your object. Best way to do this is something like this: [CODE] // Settings that do not change before the loop $mail = new PHPMailer(); $mail->IsSMTP(); $mail->Host = "..."; // … | |
Re: The first link is different from the second (in the reply). Did you make a typo when submitting? | |
Re: 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 shiny. As soon as you need something more advanced or customized problems are arising. The help forum is only helpful … | |
Re: Closed. Continue here: https://www.daniweb.com/programming/web-development/threads/500929/ajax-post-data-in-mysql | |
Re: Are you sure that `$sentiment` and `$language` are objects? | |
Re: 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 a SqlFiddle with some sample data and your actual queries people might be able to help you out. ![]() | |
Re: If you use a composite PK in your users table, your auto increment will work as expected. | |
I have a MultiView in a part of a WebForms page (within a RadPane which is a Telerik component). It contains two Views, an overview and a detail view. When switching between them, the scrollbar position is kept, but I would like to force it to the top. All options … | |
Re: You're code is flawed. `xhr.ResponseText` may not have a value right after sending because the request is asynchronous. Read more [here](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/Using_XMLHttpRequest). | |
Re: > what is difference between sql server and sql server management studio? SQL Server is the actual database server. SQL Server Management Studio is a GUI to simplify creating tables, running queries etc. | |
![]() | Re: Depends on your level I guess. Codeigniter is a good start, Laravel is much better designed (using modern features as IoC) IMO. From what I've learned in C# coding mechanics, Laravel is the better fit. ![]() |
Re: $keyword = mysql_real_escape_string( trim($_POST['keyword'])); $keywords = split(' ', $keyword); foreach ($word in $keywords) $queryKeyword[] = "'%$word%'"; $where = implode(' OR keyword LIKE ', $queryKeyword); $sql = "SELECT title FROM search WHERE keyword LIKE $where"; | |
Re: > is there any codings involved?? in scanner Usually not. If you have a keyboard wedge scanner as rproffitt said, you can only configure them if you need to. You can set it to end with CRLF for example, but in most cases you don't need to change this. | |
Re: Here is a more recent example: http://stackoverflow.com/questions/18122219/aes-crypt-delphi-php-corrupted-output | |
Re: If they don't support it, then only refreshing the chart can work (but not recommended). However, I think this question is more suited to be asked to Shield support. | |
Re: So just keep row count in a variable, and use that to determine when to insert your ad. | |
Hi. We're looking into building an easy to use audio player to use at parties. BPM Studio works great, but most people don't know it and have trouble using it. So far I've found [NAudio](https://naudio.codeplex.com), which makes playing mp3's easy. I'm looking for something I can use so I can … | |
Re: $disabled = $stat =='a' ? 'disabled' : ''; echo "<select name='name' id='name' $disabled>"; | |
Re: Your quotes are wrong, MySQL needs single quotes: $values = "('$mobile', '$routeID', 'INVALID')"; | |
Re: > My current connection and echo code is as follwed And what is the question? | |
Re: You marked the other one solved, that's why I figured this was a repost. | |
Re: It gets easier if your keywords column would be changed to a link table where each keyword is linked separately. If have written a tagging example for PHP/MySQL that can be implemented in SQL Server: https://www.daniweb.com/programming/web-development/code/460663/article-tagging-example | |
Re: A file is unlikely to have all those content-types. It cannot be an mp4 AND a pdf. You need code to choose just one. You might also want to set the correct content-length. See the example: http://php.net/readfile | |
Re: Can't you use image_name as the src for an img tag? | |
![]() | |
Re: > Add a friend button is not working What exactly is not working? Next time please write your question with some punctuation. It's very hard to read. | |
Re: > There is something wrong What is it supposed to do, and what isn't it doing exactly? | |
Re: > But how do you tell it that the username column should update? You shouldn't. In a normalized database the member name should not be repeated. If you do want to update it, create an update trigger on the members table. | |
Re: I think he means the Geek's Lounge. It's gone, just post under Community Center. | |
Re: Check what gentlemedia showed you, because your version is not identical. | |
Re: Not sure there is one, because asp.net is designed to run in a browser. Why run a browser in a browser. Put html in a div or iframe (depending on what you have) and you're good to go. |
The End.