8,966 Posted Topics

Member Avatar for Sravani saka
Member Avatar for muhd.ardany1

Write down how you would do it, if you had to do that by hand. If you do that it is much more likely you will come up with a solution.

Member Avatar for pritaeas
0
140
Member Avatar for vishalonne

The onblur for element 13 specifies element 12 in the call. Note that when you tab out of 12, the javascript triggers because 13 gets focus. Then because 12 is empty, you set it's focus back, which causes the onblur of 13 to trigger, thus overwriting the message from 12.

Member Avatar for Taywin
0
239
Member Avatar for devianleong
Member Avatar for pritaeas
0
218
Member Avatar for ivan.vodisek
Member Avatar for cristoff87
Member Avatar for DELL_deepa
0
158
Member Avatar for kutchbhi

Wow, even no replies on [your SO thread](http://stackoverflow.com/questions/11610463/not-able-to-connect-using-imap-open)...

Member Avatar for blocblue
1
849
Member Avatar for rpv_sen

[SQL](http://en.wikipedia.org/wiki/SQL) is a language to query a database for information. [MySQL](http://www.mysql.com/) is a specific brand of server and [PHPMyAdmin](http://www.phpmyadmin.net/home_page/index.php) is a server tool to access the databases on MySQL servers.

Member Avatar for pritaeas
0
1K
Member Avatar for cali_dotcom

Before choosing a solution, do make sure that you are fixing the right problem. Measure performance to find the real bottleneck, and fix that.

Member Avatar for pritaeas
0
299
Member Avatar for joshmac

I came across this [SO thread](http://stackoverflow.com/questions/5682089/php-namespaces-autoload), not sure if yours is the same issue though.

Member Avatar for pritaeas
0
211
Member Avatar for zenp

> unexpected $end Is usually a missing curly bracket, but I don't see it.

Member Avatar for pritaeas
0
211
Member Avatar for LastMitch

http://php.net/hash_hmac If you want to write your own, you can check the code of [the PEAR package](http://pear.php.net/package/Crypt_HMAC2).

Member Avatar for LastMitch
0
110
Member Avatar for softDeveloper
Member Avatar for pritaeas
0
72
Member Avatar for naru vaishnaw

Will you please share what the problem was and how you resolved it, to help out others ?

Member Avatar for pritaeas
0
157
Member Avatar for tigersaver

1. Check that your host supports cron jobs. 2. Create a PHP (or shell) script that does the job. 3. Add a cron job that will run your file regularly. Most hosts that support cron, also have support files describing how to set them up. What remains would be writing …

Member Avatar for pritaeas
0
299
Member Avatar for marielleko
Member Avatar for anuj.arora.102

There are ways to do that, but they are ugly and limiting. I hope you are considering just in theory, and not in practice.

Member Avatar for pritaeas
0
37
Member Avatar for Pidgetastic

> it just outputs some of my query Can you show what the output is ? Is it perhaps a query error, because `catagory` is misspelled ?

Member Avatar for blocblue
0
739
Member Avatar for kletig

Just separate it in code. SQL will always return a single list. Loop the results, output your list, and when the supplier changes, start a new list.

Member Avatar for pritaeas
0
153
Member Avatar for jajack007
Member Avatar for pritaeas
0
50
Member Avatar for Violet_82

Without the dash it works (Opera). With the dash you get an error on it. Because it is object notation, variable naming rules apply, and a dash is not a valid character in a name.

Member Avatar for Violet_82
0
119
Member Avatar for Suzie999
Member Avatar for architact
Member Avatar for HTMLperson5

> I tried running the same amount of videos on Ubuntu Linux (99) Do all those tests run the same software, VLC?

Member Avatar for HTMLperson5
-3
461
Member Avatar for RogerPelt
Member Avatar for renjithdas

Find out if it really is the dot that is causing this. You can always change the filename to a temporary one, resize the image, and rename it back. There are reports of issues with CMYK images and images with headers, but I've not encountered this before.

Member Avatar for renjithdas
0
177
Member Avatar for sania khan

> String or binary data would be truncated. The statement has been terminated. This message means that you are trying to fill a column with more characters than it can hold. For example, suppose serial number is defined as varchar(6) and you are trying to insert '12345678'. Best way to …

Member Avatar for sania khan
0
248
Member Avatar for naheedkassam

Have you tried the Telerik forum ? Have you tried upgrading to the latest RadControls ?

Member Avatar for naheedkassam
0
140
Member Avatar for davy_yg

[url]http://www.malsup.com/jquery/cycle/[/url] Very nice plugin with loads of option. Website has loads of (working) examples.

Member Avatar for pritaeas
0
120
Member Avatar for mzeewashooo

Did you install the [MySQL driver](http://dev.mysql.com/downloads/connector/net) ?

Member Avatar for riteshbest
0
279
Member Avatar for polinolin
Member Avatar for louisdesouza
Member Avatar for niths

If you need more, you need to add more input fields (one per file). So you could add some javascript code to do that, or use a tool which allows adding multiple files. Personally, I like plUpload (from the creators of TinyMce). It supports Flash, Silverlight, HTML5 and uses whatever …

Member Avatar for sheikhali449
0
519
Member Avatar for Violet_82

`hoverThumbnail` is attached to `a` with `this` as parameter. So the `calledFrom` parameter is an `a` DOM element. `var $calledFrom = $(calledFrom);` changes the DOM element into a jQuery object, so you can easily call jQuery functions on it, and chain them if necessary. `get(0)` gets the first element, if …

Member Avatar for Violet_82
0
104
Member Avatar for M.Waqas Aslam

You can use [this attribute](http://msdn.microsoft.com/en-us/library/system.security.permissions.principalpermissionattribute.aspx) for your method. If your whole application needs permission, add a [manifest file](http://msdn.microsoft.com/en-us/library/windows/desktop/bb756929.aspx).

Member Avatar for M.Waqas Aslam
0
118
Member Avatar for Que336

Is your browser HTML5 capable, as stated in the example ? > tag.src = "//www.youtube.com/iframe_api"; Try changing it to: tag.src = "http://www.youtube.com/iframe_api";

Member Avatar for Que336
0
6K
Member Avatar for damaritah

You are executing a query that tries to insert a value for an identity column, which is not allowed.

Member Avatar for damaritah
0
73
Member Avatar for rayidi
Member Avatar for veledrom

An `&` in XML should have been escaped with `&`, so technically it is invalid. You can try to replace it before loading.

Member Avatar for pritaeas
0
251
Member Avatar for McLaren

Shouldn't be extremely hard to convert that to PHP (had just a quick glance though), the differences are relatively small. An enumeration is just for readability, it's basically just an int.

Member Avatar for pritaeas
0
100
Member Avatar for phpDave

> SELECT * FROM user JOIN message A JOIN requires an ON to link both tables correctly.

Member Avatar for pritaeas
0
88
Member Avatar for fabzster

You would have to change your join to something like this: FROM tblstores LEFT JOIN tblpolicies ON tblpolicies.StoreId=tblstores.StoreId

Member Avatar for pritaeas
0
59
Member Avatar for daino

Do you have a link to the tool you are using? If the report gives you HTML, then you can style it with CSS.

Member Avatar for daino
0
199
Member Avatar for newbie1234

> Are we allowed to royally f--- up your site without worry of prosecution? If so, provide proof it is your website.

Member Avatar for newbie1234
0
104
Member Avatar for muralibobby2015
Member Avatar for diafol
0
106
Member Avatar for davy_yg
Member Avatar for jacksbileduct

> Am I wrong in thinking that the majority of web developers out there feel the same way as I do? I am positive most feel the same way. > Am I naive in thinking that web developers could actually make a difference by educating the web browsing public? Yes. …

Member Avatar for JameB
0
227
Member Avatar for latooplat

You can use [usort](http://php.net/manual/en/function.usort.php) to sort the array of words, using your own comparison function. The comparison function should return a negative value if the first word comes before the second word. Basically, you can check the first letters. If they are equal, check the next (and so on). If …

Member Avatar for pritaeas
0
1K
Member Avatar for taskeef

> "Hotlinking is not allowed" This response is coming from that server. It detects you want to open that image from a different server directly, and does not allow that.

Member Avatar for almostbob
0
283
Member Avatar for dstoltz

I'd choose 2. If the content is deleted and you want the page to be un-indexed, a 404 error page would be the best option. If you can redirect to similar content, then you can think of a 301 redirect.

Member Avatar for dstoltz
0
148

The End.