8,966 Posted Topics
Re: Welcome to DaniWeb. Sounds like Software Development is where you want to be. Any language in mind? | |
Re: Are you not getting an error message (if it happens) back on the same URL? | |
Re: tldr; > because the bar code scanner automatically sends a CR after each scan, This behaviour can be turned off on every scanner I've used so far. > However, this NEVER happens when we manually enter the upc into the field which tells me that the process that occurs between … | |
Re: A little vague, can you be more specific? | |
Re: Is there Javascript involved, specifically when you click submit? | |
Re: Don't know what a BSB is, but it should be safe. When I had a company I was required by law to provide my bank details (among other things) on my website. | |
Re: Loop the entries: Hashtable hashtable = new Hashtable(); hashtable.Add("1", "one"); hashtable.Add("2", "TEST"); hashtable.Add("3", "one"); string key = string.Empty; foreach (DictionaryEntry entry in hashtable) { if ((string)entry.Value == "TEST") { key = (string)entry.Key; break; } } Console.WriteLine(key); | |
Re: SelectSingleNode(string.Format("//viewentries/viewentry[@position='{0}']", posSecond)); should work, assuming the position attribute contains a string value. | |
Re: If you know what day was May 1st, you can calculate which day is Mother's Day. For example, if May 1st is a sunday, the day number you are looking for is 8. There is no WeekOfMonth directly available, although you could create one. | |
Re: You might get better answers if you ask a more specific question ;) (although this forum is not very active compared to the others) | |
Re: Basically, yes. Am sure there are services you can use, for the right price. But that is probably better at a later stage. Parcel services will pick your stuff up, you just need to make sure it is packaged correctly and ready to go. | |
Re: Have a look with print_r($_POST); You'll see that some fields are arrays. You can loop through them with foreach. | |
Re: You'll need to use Javascript/AJAX to request the value from a PHP script. | |
Re: > Is it really that easy to manipulate a live site, just by changing whatever attributtes used? Basically. If you don't think ahead, you might forget this can happen. I've seen such things in production code. > Can anyone share some thoughts on this approach? If you just use the … | |
Re: In MySQL you can use [GROUP_CONCAT](http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html#function_group-concat). | |
Re: Buy a license. http://www.microsoftstore.com/store/msusa/en_US/cat/Windows-8/categoryID.62684800 | |
Re: http://php.net/manual/en/function.setcookie.php *"setcookie() defines a cookie to be sent along with the rest of the HTTP headers. Like other headers, cookies must be sent before any output from your script (this is a protocol restriction). This requires that you place calls to this function prior to any output, including <html> and … | |
Re: [Check for errors](http://php.net/manual/en/pdo.errorinfo.php). | |
Re: > Can code be added to daniweb post? Just type or paste it, be sure to indent it with 4 spaces. | |
Re: I don't think all your curly braces are in the right place either. | |
Re: Using `substr` is certainly possible if the parts are fixed in size (appears so from glancing over the docs). So what is the problem you have with `substr`? | |
Re: If you inspect the source of that page, you can see it uses an `area` tag. | |
Re: There are a lot of examples in this forum already with PhpMailer and Gmail, do a search. IIRC Gmail uses TLS on port 587. | |
Re: You should set your email to HTML. How depends on how you are actually sending it. | |
Re: Are you publishing to an IIS Server? Does it have an MS Access driver installed? | |
Re: Are you using an extension? Did you check it's documentation? | |
| |
Re: > Using PHPStorm and getting an "Expecting statement' error. Here's what I have so far: On which line? | |
Re: https://www.daniweb.com/community-center/daniweb-community-feedback/area-51/threads/483788/facebook-login-madness Probably still the same. | |
Re: So? What's your question about the above? Be specific, and show the code you already have. | |
Re: Did you search? Upload what? What method do you want to use? Do you have control over both servers? | |
Re: Hard to say. Doesn't Payza have a forum or kb? | |
Re: > i whant that every result to show it one down the another(mysql grid table) but with that kind of search. What exactly are you trying to achieve? Can you be a little more specific? | |
Re: Yes this is a forum, and a place for discussions. It does not have a test hidden somewhere. Are you looking for something like codeacademy or phpacademy? | |
Re: I have one, but it's still working. If you want to compare, it's at dwapi.pritaeas.net | |
Re: We don't just delete threads, unless it is in violation of our rules. ![]() | |
Re: > The result (that comes in a Vector format) has the first element of the vector OK but the rest are messed up, as if there was some kind of memory overlapping or something. Sounds like some x32 code is now built on x64 and fails. Verify that all types … | |
Re: If you output `print_r($_POST);` does it show `group_level` ? | |
| |
Re: A shape is drawn directly on the canvas, so I guess the only way is to change your `hover` method. If it's near the line you should show the tooltip, otherwise remove it. Since you know the position of the line, you can calculate whether the mouse position is near … | |
Re: $_SESSION=['cardno']=$_POST['cardno']; Should be $_SESSION['cardno'] = $_POST['cardno']; | |
Re: Contact your host. Could be anything from Terms of Service violations to missing payments. | |
Re: `?student_id=` That's why it's undefined, it doesn't have a value. |
The End.