335 Posted Topics
Re: If you have a look at Altova xml spy, with that you can point and click at items and it will tell you what the xpath is. Its free for a 1 month trial. | |
| |
Re: http://www.paxium.co.uk/content/daniweb/divclear.html <html> <head> <title>untitled</title> <style type="text/css"> body { font-family: sans-serif; } p { clear: left; } #boxA { float: left; } #boxB { float: left; } #boxC { clear: left; float: left; } #boxD { float: left; } #boxA, #boxB, #boxC, #boxD { border: 1px solid green; text-align: center; line-height: … | |
Re: You can try with a cable or maybe even buy a usb network adapter such as: http://www.ebuyer.com/262952-tp-link-tl-wn822n-wireless-n300-high-gain-usb-adapter-tl-wn822n | |
Re: I don't know anything about those objects but my tip would be to consider the Liskov substitution principle in making your decision. | |
Re: You could do it like this string[] wibble = { "AAAA", "BBB,B", "CCCCC" }; Console.WriteLine(CommaCount(wibble.ToArray())); Or like this: public static int CommaCount(string[] sarray) { var copy = sarray.ToArray(); int count = 0; int commas = 0; for (int i = 0; i < copy.Length; i++) { commas = copy[i].Count(c => … | |
Is there a bug when editing a post? To reproduce follow these steps. a) Reply to post b) Edit to correct a typo maybe c) Save d) Edit again as you spotted another typo - the editable text then does not load the latest correction. I am using IE 11. … | |
Re: It may help if you break your questions into smaller more easily answered chunks rather than one monolithic question. | |
Re: Probably unclosed tag or speech marks. | |
Re: That's right as the first if condition is satisfield. Try putting the last one at the start instead. if ($_POST['price'] =="see all" AND $_POST['accommodation"]=="see all") { //show henry } else if ($_POST['price'] =="see all") { //show okolo } else if ($_POST["accommodation"] =="see all") { //show chibuzo } | |
Re: A cypher is an algorithm for encrypting/decrypting. Why are you adding two strings - AB + AB - I don't understand that. Can you explain please? | |
Re: If you show us your code that might help. | |
Re: What is the current domain and the new one? | |
Re: Will this work? $result = str_replace(' ', '', $input); | |
Re: You just hit update model from database as far as I remember - no need to delete. I am doing code first now though which is much better but I'm sure that's right. | |
Re: Cursors are slow. Avoid them if you can, it will be much faster. | |
Re: Sounds like some kind of MVC architecture - is this right? If so which specific one? | |
Re: Try this function validate(dt1, dt2) { var jdt1 = Date.parse('20 Aug 2000 ' + dt1); var jdt2 = Date.parse('20 Aug 2000 ' + dt2); var diffMs; var diffMins if (isNaN(jdt1)) { alert('invalid start time'); return false; } if (isNaN(jdt2)) { alert('invalid end time'); return false; } if (jdt1 > jdt2) … | |
Re: Is this any help? ` <style type="text/css"> html body { margin: 0 atuo; margin-top: 20px; } #main { margin: 0 auto; background-color: lightgreen; overflow: auto; text-align: center; height: 300px; width: 300px; color: blue; display: table; padding: 40px; } #box { display: table-cell; vertical-align: middle; height: 200px; border: 1px solid #000; … | |
Re: Hi I use TinyMCE and its great and easy to use. Not sure what you mean by "able to upload image from computer directly without url"? Can you clarify that point please? | |
Re: Should it have a for attribute? Do you not have source control - if so you can check what has changed! | |
Re: You can do it via querystring or via a cookie but it still requires a trip to the server of course. | |
Re: You will of course need to make sure jquery is included in your page and your code is within script tags etc. | |
Re: Hi "how can i know the open source mobile application" doesn't make much sense - can you clarify please? | |
Re: I may be able to help but I'm not clear on what you are actually asking for. Can you clarify/summarise what you need? | |
Re: I don't have a FB account, can I view your site? Also how will you know who the user is? This is an awful idea! | |
Re: Possily remove AND Username = '".$user."'"; This is a guess though as I don't know about your db schema, application architecture etc. | |
Re: Is prayer-times.php the same page - ie are you redirecting to the same page? | |
Re: "Temporary tables records not invisible in html page" should be "Temporary tables records not visible in html page"! | |
Re: You can try configuring it to user a Time Server. http://www.experts-exchange.com/OS/Microsoft_Operating_Systems/Server/Windows_Server_2012/VP_511.html | |
Re: You don't want all that code inside a button click event handler. Break your code up into discrete classes and methods of specific functionality. It will make everything much easier. Your button click code should be very simple like below - note this is pseudo code (http://en.wikipedia.org/wiki/Pseudocode) If FormIsValid() Then … | |
Re: I don't do Java but could it be that you need: while ( (bufl += inputReader.read(buf)) != -1) or something along those lines? | |
Re: This probably won't help and will only annoy you but always develop with the versions you are deploying to! | |
Hi Dani - I sent you a message and I got an email saying you replied but I have nothing in my Inbox :( Any ideas? | |
Re: How about XML? Or Does Java Support Serialisation? | |
| |
| |
Re: Print out your sql statement and if it looks ok would be a good place to start. I don't do PHP but the Where statement looks suspicious to me. | |
Re: Try debugging or outputting the sql statement then it will be easier to disgnose. | |
| |
Re: You have prodid in your url. You are getting productID though in your code. | |
What is this for? https://www.daniweb.com/editorial/contribute Thanks |
The End.