8,966 Posted Topics
Re: 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. | |
Re: 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. | |
Re: You could let Javascript trap the input, and enter it in your hidden input. | |
| |
Re: Wow, even no replies on [your SO thread](http://stackoverflow.com/questions/11610463/not-able-to-connect-using-imap-open)... | |
Re: [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. | |
Re: Before choosing a solution, do make sure that you are fixing the right problem. Measure performance to find the real bottleneck, and fix that. | |
Re: I came across this [SO thread](http://stackoverflow.com/questions/5682089/php-namespaces-autoload), not sure if yours is the same issue though. | |
Re: > unexpected $end Is usually a missing curly bracket, but I don't see it. | |
![]() | Re: 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). ![]() |
Re: http://mark.koli.ch/2009/09/use-javascript-and-jquery-to-get-user-selected-text.html | |
Re: Will you please share what the problem was and how you resolved it, to help out others ? | |
Re: 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 … | |
Re: There are ways to do that, but they are ugly and limiting. I hope you are considering just in theory, and not in practice. | |
Re: > it just outputs some of my query Can you show what the output is ? Is it perhaps a query error, because `catagory` is misspelled ? | |
Re: 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. | |
Re: http://remysharp.com/2007/12/21/how-to-integrate-openid-as-your-login-system/ | |
Re: 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. | |
| |
Re: Define "whole web page". | |
![]() | Re: > I tried running the same amount of videos on Ubuntu Linux (99) Do all those tests run the same software, VLC? ![]() |
Re: Blog post is just ripped from the Analytics Blog... | |
Re: 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. | |
Re: > 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 … | |
Re: Have you tried the Telerik forum ? Have you tried upgrading to the latest RadControls ? | |
Re: [url]http://www.malsup.com/jquery/cycle/[/url] Very nice plugin with loads of option. Website has loads of (working) examples. | |
Re: Did you install the [MySQL driver](http://dev.mysql.com/downloads/connector/net) ? | |
Re: Show your code, and the error you get. | |
Re: Check with your host. Perhaps port 587 is blocked. | |
Re: 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 … | |
Re: `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 … | |
Re: 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). | |
Re: 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"; | |
Re: You are executing a query that tries to insert a value for an identity column, which is not allowed. | |
Re: This looks like JSON, try `json_decode`. | |
Re: An `&` in XML should have been escaped with `&`, so technically it is invalid. You can try to replace it before loading. | |
Re: 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. | |
Re: > SELECT * FROM user JOIN message A JOIN requires an ON to link both tables correctly. | |
Re: You would have to change your join to something like this: FROM tblstores LEFT JOIN tblpolicies ON tblpolicies.StoreId=tblstores.StoreId | |
Re: Do you have a link to the tool you are using? If the report gives you HTML, then you can style it with CSS. | |
Re: > Are we allowed to royally f--- up your site without worry of prosecution? If so, provide proof it is your website. | |
Re: Make it an auto-increment unsigned integer. You can add the zeroes in PHP. ![]() | |
| |
Re: > 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. … | |
Re: 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 … | |
Re: > "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. | |
Re: 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. |
The End.