8,966 Posted Topics
Re: What country/region are you in? | |
Re: Aren't you using an autoincrement field in your table? | |
![]() | Re: `WEEKDAY` is an SQL function, so if you also have a column with the same name, that might be your issue. ![]() |
Re: http://stackoverflow.com/questions/193896/whats-a-good-c-decompiler Not addressing any legal issues you're gonna have... | |
Re: View the source of the message and check your image path. | |
Re: Line 1225 is not terminated correctly. | |
Re: > I am working at MVC, not in windows application. The basics are the same for both. | |
Re: http://php.net/manual/en/mysqli-result.fetch-array.php `mysqli_fetch_array` returns a row, so you should store that in a variable. | |
Re: On line 143 change `$LAST_INSERTED()` to `$LAST_INSERTED` If you change: $result=mysql_query($sql); to: $result = mysql_query($sql) or die(mysql_error()); You get a hint at what's possibly wrong. | |
Re: > I don't know where to start. http://www.asp.net/mvc/overview/getting-started/introduction/getting-started | |
Re: Invalid syntax. What do you want to happen? <option ' . ($a == $b ? 'selected' : '') . '>asd</option> | |
Re: I think you need to remove line 51. | |
Re: > Not sure why its not working. That's a bit vague. Can you explain what exactly is not working? | |
Re: I think you'll need to request that from an admin, mods can't either (yet). | |
Re: You can add `[DataType(DataType.MultilineText)]` just before your property definition, or use: @Html.TextAreaFor(model => model.Message, new { cols = 35, @rows = 3 }) | |
Am currently trying to use the Web API and accept a HTTP POST containing an XML. I was under the impression that this could be automatically deserialized into an object, but I am missing something. public class Item { public int Value { get; set; } } This one works, … | |
Re: All your sub-queries join campaignRecipts so it might be possible to get your results with a regular join and aggregates. Without some sample data it'll be hard to give a definitive answer. | |
Re: > can you suggest me what is missing What's not working? | |
Re: Can you provide a small SQL dump to test with? Or put it on SQLFiddle. | |
Re: Copy for MySQL: https://www.daniweb.com/web-development/databases/mysql/threads/457944/read-this-before-posting-a-question Additions always welcome. | |
Re: Personally I prefer a tool like [Quartz](http://www.quartz-scheduler.net), but you can use a regular timer. | |
Re: > I want to create a class that echoes the message resulting from the validation, however, I'm not sure how to get the results from the validator class passed to a "message" class (I'm also trying to keep the 'message' class versatile enough to handle more than just form validation … | |
Re: You should keep it as an int, and display with leading zeroes where necessary. | |
Re: https://msdn.microsoft.com/en-us/library/7yty6a48.aspx | |
Re: Since you are refactoring, why are you passing the rows and cols to your iteration method? If you always iterate over all rows and columns, you can use the matrix internal rows and columns values instead (you passed them to the ctor already). | |
Re: Am not familiar with `Rss20FeedFormatter` but the link below appears to tackle the same issue you are having. I know that when parsing this as XML, I'd add a namespace definition, but I'm unsure how that would work here. http://www.lerra.net/post/2012/05/09/Reading-non-standard-elements-in-a-SyndicationItem-with-SyndicationFeed.aspx | |
Re: Technically, it's possible. However, both do the same thing. So if you escape your string, the binding might escape the already escaped string again, leading to strange results (more quotes and backslashes than you bargain for). | |
Re: If you had written your previous posts in the same manner as the one above, you'd have been taken seriously from the start. > when you want to be respected, just respect others Funny you say that... ![]() | |
Re: It won't. It's in-house software and stays that way. At least that's what was said a while ago. | |
Re: Are you looking to return an instance (`return this;`) or just the int (`return T;`) ? | |
Re: If you just want to download the ZIP, no account is needed. | |
Re: Why do you have two of these? $('LI STRONG').click(function(e) { /* */ }); It's not showing everything because your $('#contents LI:not(:contains(' + s + '))').hide(); is also hiding the li's in your em ol which you want to show. | |
Re: if ($foundnum > 25) { // output the filter option here } Although I'm not clear on what you want to put in it (yet). | |
Re: > I meant pm alert Which is completely unrelated to this thread. | |
Re: `mysqli_query` is a different extension then `mysql_error`. Fix it and then give us the error you get. | |
Re: Start here: http://php.net/manual/en/language.types.array.php | |
Re: > Can't use mysqli as the current phpmyadmin am using is the older version The MySQLi extension and PhpMyAdmin are unrelated. > i dont know how to use the switch case function switch ($pick) { case 8: // your code when $pick is 8 break; case 4: // your code … | |
Re: This helped me: http://blog.markjohnson.io/exorcising-entity-framework-from-asp-net-identity/ Then add any DB you want. | |
Re: As a `string` or an `XmlDocument`. The last one provides easier access to it's contents. | |
Re: Check the feedback forum, there are more threads on the subject of anonymous voting and why it is the way it is. | |
Re: What exactly do you need help with? Do you want a website that does this, or an application, or a service? If you have processed a file, will you delete it? Are you inserting into the database yourself? Do you need to parse the XML too? | |
Re: The marketplace was a huge spam magnet. Since the introduction of a donation for access... no more spam (nor posts). | |
Re: > I need to find an example of how to do this using this method. https://www.daniweb.com/web-development/php/code/462098/mysqli-binding-example > Would I just write one of these statements for each of the pre-existing rows in my table? You'd only need to prepare this statement once, and execute it after you change the bound … | |
Re: CREATE DEFINER = `root`@`localhost` PROCEDURE `SPNEWUG` ( IN `@GroupName` VARCHAR( 255 ) , IN `@HeadOffice` TINYINT( 2 ) , OUT `@UG_ID` INT( 8 ) ) COMMENT 'Add New User Group' NOT DETERMINISTIC NO SQL SQL SECURITY INVOKER BEGIN INSERT INTO tblUserGroup( tblUserGroup.UG_Name, tblUserGroup.UG_GBTF_HO ) VALUES (@GroupName , @HeadOffice); SET @UG_ID … | |
Re: The manual doesn't mention the possibility of nesting templates. Perhaps you can use the output of one template as input for the next, just like any other variable. | |
The End.