8,966 Posted Topics

Member Avatar for divyakrishnan
Member Avatar for pritaeas
0
156
Member Avatar for Jenniferting

> A credit card number must have between 13 and 16 digits The current max is already on 19.

Member Avatar for pritaeas
0
671
Member Avatar for dbalas

You can add `quantity - $values["quantity"] >= 0` to the where clause, but then you don't get an error. What you describe is business logic and should be checked by you before doing the update.

Member Avatar for dbalas
0
158
Member Avatar for Riu 2009
Member Avatar for tscina

If you use a submit button (in a form), then you can add your variables as hidden inputs in that form.

Member Avatar for tscina
0
221
Member Avatar for fdkallday_1
Member Avatar for pritaeas
0
101
Member Avatar for jackbauer24-2
Member Avatar for pritaeas
0
117
Member Avatar for andyy121
Member Avatar for EvolutionFallen
0
226
Member Avatar for gahhon

Can you explain what you mean? Do you want to add an image, or do you want to add a .xap (Silverlight file) displaying an image?

Member Avatar for gahhon
0
185
Member Avatar for bsewell
Member Avatar for pink_05
Member Avatar for jackbauer24-2

> will I be able to use the command line tools on a real web server That will depend on your webhost. Some allow it, others don't. Check with them.

Member Avatar for jackbauer24-2
0
504
Member Avatar for Coyx

Why is simple. You want to be able to reproduce a production error/bug on your development system. Having identical setups for both will eliminate a lot of possibilities that the problem lies in version differences.

Member Avatar for pritaeas
0
251
Member Avatar for FrankG.LV

You better contact the seller. He will probably know what you did wrong, as he has much more experience with the script.

Member Avatar for pritaeas
0
95
Member Avatar for wisuju

Use a loop for each character, in it build two strings (letters, numbers). After the loop is finished, concatenate them.

Member Avatar for pritaeas
0
76
Member Avatar for DJ-DOO

> ['<?php echo join($data9, "','") ?>', <?php echo join(',', $data10); ?>], The first one has single quotes around the join, the second does not.

Member Avatar for sandi triana
0
3K
Member Avatar for alex.myrick.39
Member Avatar for pritaeas
0
170
Member Avatar for alex.myrick.39

Not as-is probably. Delphi XE2+ allows creation of iOS applications with FireMonkey. You'd still require a Mac though to compile the generated XCode.

Member Avatar for pritaeas
0
70
Member Avatar for alex.myrick.39
Member Avatar for vizz
Member Avatar for Ancient Dragon

Exactly, no contact information, and selling OEM software is not legal everywhere.

Member Avatar for <M/>
0
161
Member Avatar for localnumberone
Member Avatar for robotforce
Member Avatar for phpHelp

What eCommerce package and what live chat module are you using?

Member Avatar for Djmann1013
0
188
Member Avatar for rizzi143
Member Avatar for diafol
0
280
Member Avatar for joseph.akinadewo
Member Avatar for squeak24
Member Avatar for cucolino

If you had looked a little closer to this forum, you'd have seen that the two questions before yours are about similar issues. Check them out, perhaps it will get you started in the right direction.

Member Avatar for cucolino
0
427
Member Avatar for deepak.fugo

1) A browser will usually not load more than two files simultaneously per domain. If you use more domains, it will try to load more files simultaneously. 2) Cloud hosting has the advantage of moving your site around if something goes really bad. But with only 10.000 hits per day …

Member Avatar for steveeshair
0
178
Member Avatar for dbalas

You need to merge lines 12-14 and 53,54. If you move the first query to the position of the second, you just need to add the 4 column names and values into the first query: $sql = "INSERT INTO parts (username, customer_name, customer_address, date, warehouse, part_number, description, serial_number, quantity, part_condition, …

Member Avatar for dbalas
0
182
Member Avatar for alex910TN

I suggest you step through the code with the debugger, so you can see exactly where the problem occurs.

Member Avatar for pritaeas
0
104
Member Avatar for vizz

The simplest way is probably something like [AddThis](http://www.addthis.com/).

Member Avatar for vizz
0
185
Member Avatar for cjstan
Member Avatar for trishtren
Member Avatar for trishtren
0
159
Member Avatar for alex910TN

Have you tried this: while (ord(UpperCaseWords[i]) >= ord('A')) and (ord(UpperCaseWords[i]) <= ord('Z')) do

Member Avatar for pritaeas
0
206
Member Avatar for np complete

Hmz. Perhaps a post about using queries (MySQL, MySQLi, PDO) correctly is a good one to get back up there. I'll try to allot some time for one, unless anyone else feels inclined. The "is not a resource" questions still come up regularly.

Member Avatar for LastMitch
0
791
Member Avatar for cigoL..:)

You can insert the records from 1 where the transno is not in 2. Something like this, but am a little rusty: INSERT INTO app2 (transno, amount, subject) SELECT transno, amount, name FROM app1 WHERE transno NOT IN ( SELECT transno FROM app2 )

Member Avatar for cigoL..:)
0
310
Member Avatar for vivekanandaan

> using SQL server Since you are using SQL Server you need to provide a user id and password too. The database name should be `Database1` if that is the name. You are trying to open it like an Access file, that is not possible. Server name could also be …

Member Avatar for MikeSmithDev
0
127
Member Avatar for leondegroot86
Member Avatar for Junisa As Sanu
Member Avatar for PwNmeNami

> Warning: file_get_contents() [function.file-get-contents]: Couldn't connect to server Are you sure opening external pages is allowed on your server?

Member Avatar for pritaeas
0
300
Member Avatar for davidp994
Member Avatar for McLaren

I prefer knowing what's going on in the background. Although well tested, not all frameworks are bug free, so it would be very convenient if you know how to fix it (compared to waiting for a new framework release containing your fix).

Member Avatar for pritaeas
0
181
Member Avatar for scholarwithfire

Here a start: http://www.daniweb.com/web-development/php/code/437655/getting-products-details-from-categories-subcategories-with-ajax-call-

Member Avatar for pritaeas
0
149
Member Avatar for flynismo

You can use an `ajax()` call to poll a PHP script (which checks your database) to see if there are any messages. You can then return the info in JSON format.

Member Avatar for pritaeas
0
189
Member Avatar for bvrameshbabu

You can read [the spec](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html) on how the server should interpret them.

Member Avatar for pritaeas
0
172
Member Avatar for angelali2013

Things to consider: - Is it really necessary to use jQuery? - Aren't you going to build methods and settings you will never use? - If you share you plugin, make sure other people can provide you with new functionality or code. You will learn new things in the process.

Member Avatar for AleMonteiro
0
237
Member Avatar for PowerCheez

You have more than one form on the same page, are you clicking the right submit button? None of them are named submit... so `$_POST{'submit']` is always false.

Member Avatar for PowerCheez
0
243
Member Avatar for AndreRet

You are trying to capture the value of the input, e.g. Alfa Romeo ? If you switch the submit javascript function with your own, then you can copy the clicked value into your hidden input and then submit the form. Is that what you want?

Member Avatar for AndreRet
0
242
Member Avatar for Eggstraordinary

The single quotes are messing it up. Remove them or use backticks. The example from AndreRet misses a semi-colon on line 2.

Member Avatar for Eggstraordinary
0
131

The End.