8,966 Posted Topics
Re: What data provider are you trying to use? | |
Re: Basically yes, but your description is a little vague, can you elaborate? | |
Re: [Here](http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html#function_week) is what mode does. Why don't you calculate the week for your april date, and use it to shift the values returned by `WEEK()`. | |
Re: [Here](http://mikehillyer.com/articles/managing-hierarchical-data-in-mysql/)'s a nice article about it. | |
Re: > didn't found use Of course it has a use. It's an excellent column type to store encrypted data. | |
Re: [Visual Basic 2010 Express](http://www.microsoft.com/visualstudio/eng/downloads) | |
Re: This may help: http://www.daniweb.com/web-development/javascript-dhtml-ajax/code/276506/jquery-forward-array-to-server | |
Re: You can only do this if you open the page in the webbrowser control (assuming it processes any css and javascript correctly). | |
Re: You first need to move the image to a permanent location. See [this thread](http://www.daniweb.com/web-development/php/threads/430938/php-image-upload-and-over-write). | |
Re: Use a class, instead of an id. You can use this code: $(".flip").click(function() { $(this).next().slideToggle(500); }); With this HTML: <div class="box"> <div class="flip">Click to slide the panel 1 down or up</div> <div class="panel">Hello world 1!</div> </div> <div class="box"> <div class="flip">Click to slide the panel 2 down or up</div> <div class="panel">Hello … | |
Re: http://www.daniweb.com/community-center/daniweb-community-feedback/threads/434753/why-there-is-no-spell-check-for-posts-and-comments- | |
| |
Re: Hard to say without seeing how the settings are applied to your widgets. | |
Re: Build a recursive function. Pass the array as parameter and initial level 0. First determine if the key exists there. If it does return the level. If it does not, search a new array in the available values, and recall the function with an incremented level. | |
Re: You can write the log to file (personally I like log4php), but you could also keep it in memory and output it only if there is a problem. Depends on whether or not you want to keep the log files for a longer period. | |
| |
Re: You need to provide some more information (table structure and/or query), and your error. | |
Re: Sounds like a carousel. I'll move this to the js forum. | |
Re: @minitauros: Although correct, I don't think most hosts will allow you to send that many emails in such a short period. | |
Re: Apparently. Can you provide some sample data? Show what you have, and what you want it to be. Perhaps that will help in coming up with the right query. | |
Re: Localhost will use your computer's time. It doesn't have to be in sync. | |
Re: `/download/` means that folder is in the webroot, not in the root of your drive. Is this the correct path? | |
| |
Re: 1. Depends on your requirements and budget. a. Define huge, and what that is based upon. b. Depends on your CMS. c. Doesn't really matter, choose something that bests fit your website. d. Yes. e. Make the site first. | |
Re: What is QB POS? How would a PHP script send that information over to it? | |
![]() | Re: Only if it is within the specifications of the language. |
Re: Can't you make an extension method for the List class? [Here](http://www.eggheadcafe.com/tutorials/csharp/7713ff3e-d733-40dc-a7b4-d97168bd7a23/some-useful-extension-methods-on-ilistt.aspx) are some samples. | |
Re: Fix the typo in line 4. `<body>` tag is missing too. | |
Re: A smart card reader has an API which you can use in your project. See the documentation. | |
Re: It's just a text file. [Here](http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html) is the official documentation. If you want to turn this: http://localhost/health/cancer into this: http://localhost/health/category.php?cat_id=46 You will need some [mapping](http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html#rewritemap). You cannot simply convert `cancer` to `cat_id=46`. | |
Re: http://www.daniweb.com/web-development/php/threads/435214/adding-a-watermark-to-this-existing-function | |
Re: What do you have so far, and what do you need help with? | |
Re: Where did you start the transaction? I only see commit and rollback. ![]() | |
Re: You need to remember the last rank assigned, and the number of points for the previous member. If the points are the same, assign the previous rank, otherwise assign the count. Try it first. | |
Re: Personally, I'd watch it burn ;) You should be able to figure out if it is NFR or not. If you bought it, you should be able to sell it, unless explicitly stated otherwise. Perhaps [this](http://www.emsps.com/) is an option. | |
![]() | Re: Reading "The Rhyme of the Ancient Mariner", "Black Swan" (by Taleb) and a book on HTML5 and CSS3. |
| |
Re: > i want my template People here will help if you have problems. So far you have not shown anything that you've tried. You will not get a ready made template here. You should start with the link Codefiva gave you. | |
Re: For visibility, I added a link to this thread in my signature. | |
Re: There might just be some include file or plugin somewhere that has one curly bracket too much. | |
Re: No need for a PHP solution, change your query: SELECT DISTINCT player FROM ( SELECT player FROM offense UNION SELECT player FROM defense) AS temp |
The End.