8,966 Posted Topics
Re: > You should implement a web application that supports multiple external authentication services, e.g. Google, Facebook and Twitter. Each of them have an API and PHP clients you can use. Start by reading up on that. ![]() | |
Re: Sites like packtpub offer access to all their ebooks for a monthly/yearly fee. | |
Re: Post your job offer here: https://www.daniweb.com/business-exchange/jobs-and-resumes/52 | |
Re: https://flexerasoftware.flexnetoperations.com/control/inst/AnonymousDownload?dkey=7914331 It's in the user guide. Search for "prerequisites". | |
Re: Just dumping code isn't going to work. Please explain what should but isn't happening. ![]() | |
![]() | |
Re: That's almost impossible to achieve. Anything that is online can be copied by anyone. | |
Re: At work, although in .NET, we use StimulSoft. They also have one for PHP. http://www.stimulsoft.com/en/products#fx Not sure if you are looking for this kind of tool. ![]() | |
Re: Do you have EXECUTE priviliges? I think you nred to remove SELECT in thr second query. Does CALL work? | |
Re: The SELECT clauses must be the same, you can't name the columns differently. | |
Re: For reference: https://www.daniweb.com/community-center/daniweb-community-feedback/threads/483910/unanswered-should-not-include-snippets | |
Re: > But when I publish it and install the program on another computer. What kind of database are you using, and did you deploy that with the program? | |
Re: Are you (representing) a company? If so, I'd use "us". If your company grows, no need to change the text. If it's personal, use "me". | |
Re: KeyLemon has a developer API, so you might want to look into that, check if it provides what you need. Although Program-O has a chatbot, you still need a way to access the webcam and get an image, and that is not possible with PHP. | |
Re: Have you looked into [Tasks](http://msdn.microsoft.com/en-us/library/dd537609(v=vs.110).aspx) yet? | |
Re: I have one on and off, basically because I am too lazy to shave. Of the 100 or so coworkers I've had I only remember two others with a beard. | |
Re: If you debug, does `oWB` have a value? | |
Re: http://php.net/manual/en/getting-started.php http://www.phptherightway.com https://phpacademy.org http://www.codecademy.com/tracks/php http://www.lynda.com/PHP-training-tutorials/282-0.html http://www.w3schools.com/php/default.asp | |
Re: > i can connect msaccess database over lan Do you have write access to that folder? | |
Re: > The message that is appears That message will be shown every time, whether or not `mail()` returns true or false. | |
Re: > I tried to use jquery to do something but nothing happens Did you include the link to the jQuery script? | |
Re: /[A-Z]{2}\d{2}[A-Z]{4}\d{10}/ You can use `preg_match`. Techically, the character combinations are limited. Not sure if you want to implement that. | |
Re: An `id` should be unique. Have a look at `getElementsByClassName` and use `class` instead. | |
Re: `lenght` should be `length`, but the element itself does not have a length. You need: `document.getElementById('IBAN').innerHTML.length` IIRC. | |
Re: > Erm have you tried http://www.delphi.com/contact/ That should be: http://www.embarcadero.com/ You can get a trial here: http://www.embarcadero.com/downloads The only way to get a key for Delphi 8 is to try and find one on eBay or the likes. Embarcadero no longer provides them, as SalmiSoft already said. | |
Re: Both tables have a `group_id`. Specify any one of them. | |
Re: > you can host it in a cheap web server compare to ASP.NET which is very expensive The price difference is no longer a reason, it has dropped to (almost) identical pricing as Apache hosting. > You can only use ASP.NET only if you work in a company who has … ![]() | |
Re: Both PHP and MySQL have md5() functions. What exactly is the problem? ![]() | |
Re: Have you tried CSS? `float: left;` should do it. | |
Re: Am sure Dani will get back to you on that. Give it some time. | |
Re: tldr; Turn on error reporting and/or check the error_log. ![]() | |
Re: > they cant be uploaded while the other jpeg photos are able too Are they perhaps bigger than the ones that aren't uploading? | |
Re: Looks like a block like this: CASE WHEN @Unit_Code > 0 THEN ((ISNULL(dbo.GetItemPrice(IUD.UnitData_ID,@ItemPriceID),0))) ELSE ( case when @Unit_Type = 1 then ((ISNULL(dbo.GetItemPrice(IUD.UnitData_ID,@ItemPriceID),0))) else ((ISNULL(dbo.GetItemPrice(IUD.UnitData_ID,@ItemPriceID),0)) / ISNULL((1/LargeUnit_UnitData.UnitData_FinalFactor),1)) end ) END) Can be rewritten to this: CASE WHEN @Unit_Code > 0 OR @Unit_Type = 1 THEN ((ISNULL(dbo.GetItemPrice(IUD.UnitData_ID, @ItemPriceID), 0))) ELSE ((ISNULL(dbo.GetItemPrice(IUD.UnitData_ID, @ItemPriceID), … | |
Re: Did you try to find one with a search engine? | |
Re: Use a loop. Start at the maximum length of your string. Check if it's a space (or non-word char). If it's not, go back one position and check again. Stop when the current character is a space (or another non-word character). ![]() | |
Re: This should work: $("input[value='']:visible:first"); The visible is just there to skip any hidden fields. | |
Re: IMO the problem lies in the script that does the insert. Can you show that? | |
Re: Not by default. If you use a class that implements JsonSerializable then you can make it work. | |
Re: You can use the modulo operator `%` to loop. Look it up, if you have problems post back. | |
Re: If your stored proc returns a single value, you can just use it in your insert query. INSERT INTO table (yourcolumn) VALUES (yourstoredproc()) | |
Re: > The website I'm working on requires the ability to upload multiple files at the same time, can anyone please help me convert this file to be able to support multi-file uploads. Do you mean that you want multiple `<input type="file">` ? You can add them using Javascript/jQuery on the … | |
Re: > Should I assign each checkbox a class and then work with that? Yes, that is usually the best option. | |
Re: Am sure Oracle has developer tools. Did you check their website? |
The End.