8,966 Posted Topics

Member Avatar for Gnowk

> 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.

Member Avatar for diafol
0
265
Member Avatar for faroukmuhammad
Member Avatar for pi man
0
235
Member Avatar for Robert_26

Post your job offer here: https://www.daniweb.com/business-exchange/jobs-and-resumes/52

Member Avatar for jackstone444
0
98
Member Avatar for AmrMohammed

https://flexerasoftware.flexnetoperations.com/control/inst/AnonymousDownload?dkey=7914331 It's in the user guide. Search for "prerequisites".

Member Avatar for deceptikon
0
205
Member Avatar for rjusman90

Just dumping code isn't going to work. Please explain what should but isn't happening.

Member Avatar for iamthwee
0
224
Member Avatar for jmichae3
Member Avatar for mariem31

That's almost impossible to achieve. Anything that is online can be copied by anyone.

Member Avatar for pritaeas
0
47
Member Avatar for miguel.saldivaaarrrrrr
Member Avatar for showman13

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.

Member Avatar for iamthwee
0
273
Member Avatar for Transcendent

Do you have EXECUTE priviliges? I think you nred to remove SELECT in thr second query. Does CALL work?

Member Avatar for jstfsklh211
0
211
Member Avatar for PinoyDev
Member Avatar for pritaeas
0
221
Member Avatar for RikTelner

For reference: https://www.daniweb.com/community-center/daniweb-community-feedback/threads/483910/unanswered-should-not-include-snippets

Member Avatar for pritaeas
0
111
Member Avatar for xuexue

> 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?

Member Avatar for xuexue
0
311
Member Avatar for joshl_1995

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".

Member Avatar for joshl_1995
0
266
Member Avatar for rae08

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.

Member Avatar for veedeoo
0
216
Member Avatar for Suzie999

Have you looked into [Tasks](http://msdn.microsoft.com/en-us/library/dd537609(v=vs.110).aspx) yet?

Member Avatar for JOSheaIV
0
129
Member Avatar for happygeek

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.

Member Avatar for DistantGalaxy
1
520
Member Avatar for ice23
Member Avatar for james.baird.5249

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

Member Avatar for ashokkmr22
0
228
Member Avatar for loginsatara
Member Avatar for pritaeas
0
55
Member Avatar for davy_yg

> The message that is appears That message will be shown every time, whether or not `mail()` returns true or false.

Member Avatar for davy_yg
0
499
Member Avatar for nadiam

> I tried to use jquery to do something but nothing happens Did you include the link to the jQuery script?

Member Avatar for nadiam
0
287
Member Avatar for acrocephalus

/[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.

Member Avatar for pritaeas
0
209
Member Avatar for kazilotus_1

An `id` should be unique. Have a look at `getElementsByClassName` and use `class` instead.

Member Avatar for kazilotus_1
0
511
Member Avatar for acrocephalus

`lenght` should be `length`, but the element itself does not have a length. You need: `document.getElementById('IBAN').innerHTML.length` IIRC.

Member Avatar for acrocephalus
0
175
Member Avatar for Ojo_1

> 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.

Member Avatar for pritaeas
0
310
Member Avatar for lomaryunk123
Member Avatar for hatch101
Member Avatar for m2soft
Member Avatar for davy_yg
Member Avatar for Glenn Rodgers

> 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 …

Member Avatar for diafol
0
274
Member Avatar for ma.da.7140
Member Avatar for diafol
0
247
Member Avatar for nadiam
Member Avatar for ankit1122
Member Avatar for matrixdevuk
Member Avatar for matrixdevuk
0
121
Member Avatar for blueguy777
Member Avatar for diafol
0
440
Member Avatar for RonKevinT.Manuela

> they cant be uploaded while the other jpeg photos are able too Are they perhaps bigger than the ones that aren't uploading?

Member Avatar for RonKevinT.Manuela
0
180
Member Avatar for AmrMohammed

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), …

Member Avatar for pritaeas
0
217
Member Avatar for vivek_11
Member Avatar for bolfescu
Member Avatar for pritaeas
0
93
Member Avatar for edwinthomas25

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).

Member Avatar for diafol
0
167
Member Avatar for nadiam

This should work: $("input[value='']:visible:first"); The visible is just there to skip any hidden fields.

Member Avatar for Airshow
1
3K
Member Avatar for SimonIoa

IMO the problem lies in the script that does the insert. Can you show that?

Member Avatar for steelbrain
0
408
Member Avatar for adishardis

Not by default. If you use a class that implements JsonSerializable then you can make it work.

Member Avatar for pritaeas
0
205
Member Avatar for Slavi

You can use the modulo operator `%` to loop. Look it up, if you have problems post back.

Member Avatar for Slavi
0
175
Member Avatar for Transcendent

If your stored proc returns a single value, you can just use it in your insert query. INSERT INTO table (yourcolumn) VALUES (yourstoredproc())

Member Avatar for pritaeas
0
83
Member Avatar for wikit

> 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 …

Member Avatar for Adrian_5
0
279
Member Avatar for maxbummber

> Should I assign each checkbox a class and then work with that? Yes, that is usually the best option.

Member Avatar for pritaeas
0
360
Member Avatar for Chinthanie
Member Avatar for Chem_1

The End.