8,966 Posted Topics
Re: Personally, I agree. If the method is so obvious, skip the test. Focus your attention on the complex ones. Can you explain what the above method is testing? Just to see if an array is returned? Shouldn't it test inserting specific data and test whether that is returned correctly? | |
Re: > how to overcome this blocking Nobody here will answer this question. | |
Re: What exactly are your requirements? ![]() | |
Re: I would set the background image on the `li` so you can add padding-top or margin-top to the `a`. Adding margin-bottom to the li will get your spacing between the blocks. | |
Re: http://www.daniweb.com/web-development/aspnet/threads/23808/difference-between-asp-asp.net | |
Re: Why is there javascript code? Your `if`'s will always fail. Use: if ($_POST['qty'] != "") | |
Re: Curl is apparently not enabled in your website. You need it for this API. | |
Re: Does this not work? UPDATE A SET Active = 0 WHERE A.NAME IN ( SELECT A.Name FROM B INNER JOIN A ON B.NameCodeB = A.NameCodeA GROUP BY B.NameCodeB HAVING MAX(B.VisitDate) < DATE_SUB(CURDATE(),INTERVAL 2 MONTH) AND A.Active = 1 ) Do you get an error? | |
Re: If you have a key, just download the install ISO and do a reinstall. Just changing the key should be possible too. I no longer have win7, but in win8 you can just input a new key. | |
Re: Which page is the real one (that does processing)? The php or the html one? If the real one is the php one, then you're doing this backwards. | |
Re: It's still being standardized, but it's a HTTP header to request a webservice to disable it's user tracking. Am not sure if it's already adopted somewhere. | |
Re: If you tell us how you want the flow of your programs/data to be, then perhaps we can guide you. Are both running on the same machine? | |
Re: I have a [plugin](https://github.com/pritaeas/hp-jquery/blob/master/plugins/jquery.hp-highlight.js) (hp-highlight) for that, written a long time ago. Get the source, and see how it can be done. | |
Re: 1) sounds like a certificate. 2) htaccess rewrite: see examples in this forum. | |
Re: Yes, the scheduler will work fine. To copy the files securely (with retries and such) I can recommend [Robocopy](http://technet.microsoft.com/en-us/library/cc733145(v=ws.10).aspx) which is available from MSDN somewhere (don't remember which SDK). | |
Re: Show some sample data, perhaps it will make things clearer. | |
Re: > Is there any way to make images and at least the thumb a exact width x height Basically yes. If the image is larger than the thumbnail, you could resize first and then crop to get an exact WxH size. | |
Re: Deadlock is two threads infinitely waiting on the same thing. Lockwait timeout means one thread timed out while waiting to get a lock, thus preventing a deadlock. | |
Re: > it doesn't work for me. Doesn't work is too vague. What have you done, what did you expect, and what isn't working? Do you have an example? | |
Re: You can only do that if you build your query as a string and execute it with `sp_executesql` | |
Re: Care to share the solution to your problem? | |
Re: See if [this plugin](http://wordpress.org/extend/plugins/car-demon/) can help you. | |
Re: http://dev.mysql.com/doc/refman/5.7/en/insert-on-duplicate.html | |
Re: That's tricky. Some members (even me) here have endorsements on topics they hardly know. How will you make this trustworthy? | |
Re: http://php.net/setcookie "Cookies must be deleted with the same parameters as they were set with. **If the value argument is an empty string, or FALSE, and all other arguments match a previous call to setcookie, then the cookie with the specified name will be deleted from the remote client.** This is … | |
Re: How about high(er) priority support. | |
Re: http://www.webtuts.info/webdevelopment/facebook-download-script-2/225/ | |
Re: You are selecting into variables. If you want to use `for each row` you'll need to select into a table. | |
Re: SELECT username FROM users u, files f WHERE f.addedby = u.username GROUP BY username Rest depends on what's in table files and what you need to retrieve of that table. Probably something like this: SELECT username, COUNT(*) AS filecount FROM users u, files f WHERE f.addedby = u.username GROUP BY … | |
Re: I think because `result` is an iterator, calling `->position` just returns the `current` item, which you can move with `next` or `rewind`. Because Iterator is implemented as an interface, print_r (old function) has no way to detect this. Outputting `result` just calls the Iterator showing all `position` objects. | |
Re: Are you sure you copied everything to your database ? Is there a reason you use multi query for a single stored procedure call ? | |
Re: TRow = record Column1: string; Column2: Integer; end; TArray = array [0..3] of TRow; | |
Re: I really doubt you can get control over the sent data packets to spoof IP addresses in PHP. Are you trying to run this on a machine at home, or on a hosted server? | |
Re: > What legal steps Consult a lawyer. Depends very much on your location. | |
Re: `if ("north")` is always `true`. You need to compare the variable `word` (I think). if (word == "north") | |
Re: Are you looking for something specific? ![]() | |
Re: Google has excellent documentation. Next time, start a NEW thread for your question. | |
Re: http://php.net/SoapClient It's `SoapClient`, NOT `soapclient`. | |
Re: > I have to wonder why anyone would use TABLOCK over TABLOCKX. Technically, the lock will only lock the rows in question (if possible), so other data can still be read and modified. Lockx will block all other queries (select queries too). | |
Re: > Using that kind of URLs will make my website and database a bit safe from hackers. What makes you think that? | |
Re: What's the format of the resume? If there is no predetermined format, it's lots of work determining all possible combinations. | |
Re: You need to build your query (string concatenation) using the information in the information_schema and then execute it. | |
Re: I'm not sure why you write them manually. If you have Visual Studio, you have `xsd.exe` which will generate them for you. | |
Re: Using `include` to run a script, doesn't use the GET params AFAIK. I think it's more suitable to use `file_get_contents` if you want to pass parameters. ![]() | |
Re: That code looks okay. What's in the event handler? What happens when you step through it with the debugger? | |
Re: This probably: for (i = 0, ii = result.length; i < ii; i++) Yes, it's valid. The initialization can contain multiple items (the others too probably). |
The End.