8,966 Posted Topics
Re: If you use the developer tools of your browser, you can easily see what's what. | |
Re: How about using `sys.stdout.write(item)` IIRC using `print` should be this: `print(item, end="")` | |
Re: You flagged it (Flag Bad Post), that is sufficient. It's already gone. You can only edit your post for 30 minutes after posting it. | |
![]() | Re: MySQL has a [STR_TO_DATE](http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_str-to-date) function, which you can use to convert the string to an actual date. ![]() |
Re: If you followed the [installation instructions](http://codex.wordpress.org/Installing_WordPress) then there must be something in the database already. Hard to say without seeing it. | |
Re: At what point in the code, and what exact error message do you get? | |
Re: > I have some javascript that will not work in IE What's not working? Just dumping code doesn't make it a valid question. | |
| |
Re: Are you using IIS, what version? Did you include the AJAX toolkit in your deploy? | |
Re: Try this: Dim item1 As New ListViewItem(File) item1.SubItems.Add(ext) item1.SubItems.Add(dte) ListView1.Items.Add(item1) | |
Re: Shouldn't there be a comma separating success and complete? | |
Re: How is your data organized? Are you using FK's or linked tables for "legs" and "stability ball"? | |
Re: There is. A recent discussion on SO meta shows that there is no such package yet, and that it's problematic to make because of all the different constructs for different processors. They state correctly that just highlighting the opcode is not really useful. | |
Re: Add an extra column to indicate the ones that have been selected (1 for selected, 0 for not yet selected) and then use in your query `WHERE selected=0 ORDER BY RAND() LIMIT 10` After that update those records. | |
Re: Am just wondering. If you want so many things different, wouldn't it be easier to parse the feed and rebuild it the way you want? | |
Re: Just building with wysiwyg is dangerous. If your client wants something, it's most likely not possible with just a drag/drop editor. You HAVE to know CSS, especially because there are still browser differences. Code is almost a must, think Javascript. You can learn server-side scripting, but if you use a … | |
Re: Not sure if it helps, [this](http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/461291/use-google-analytics-to-track-browser-viewport-size) one has the parameters in a different order. | |
Re: > Access denied for user 'futurejunction'@'182.50.130.103' Most likely a typo in either the username or password. If not, the user has no priviliges to connect. | |
Re: `LIMIT` has two parameters, offset and rowcount: LIMIT 0,5 -- first five LIMIT 5,5 -- second five LIMIT 10,5 -- third five | |
Re: Perhaps looking at the source of [this old demo](http://www.pritaeas.net/public/jquery/checkbox-calc/index.html) can give you a clue. | |
| |
Re: Using GROUP BY will easily SUM the package, but since you need to calculate the total amount, you can use a calculated column using a CASE. | |
Re: > The icons are in the exact same place they were in the old skin True, but they did not contain text. Especially on the homepage all those read/new icons in the sidebar attract(ed) the eye away from the main content. (Also new is slightly smaller then read.) The read … | |
Re: > We haven't had 'forums' in our URL for a very long time now Wouldn't you be able to test that theory by including forum in say the Community Center URL's? | |
Re: Just tried adding my MSN (was empty) and fails with the same message. It should accept an e-mail address. | |
Re: Dani is aware, just told her. Been down for hours, so I don't think it's intentional. | |
Re: Use a GROUP BY on the two columns and use SUM to get the final value. | |
Re: > when I go to the edit page to edit the entry into the databas What are you using to edit the entries? | |
Re: > What should I do on server side? You cannot detect this server-side only. | |
Re: On line 20 you have: $req = new requete($site->db, $sql) What is this `requete` class? | |
Re: $check_email="select *select* from users where user_email='$user_email'"; What is `*select*` doing there? | |
Re: Other than to use it for inspecting my roof I can't think of anything useful. | |
Re: You'll need to use a second div, to position one of the images. | |
Re: Read more here: http://dev.mysql.com/downloads/connector/net/ | |
Re: > Is there a legitimate way? It is legitimate. Perhaps you're looking for: `String.IsNullOrEmpty(TextBox1.Text)` | |
Re: Unsure. Can you show some code? | |
Re: Why do you want to do this in the query? This is typically something that should be done by the code/script running this. Anyway, I think trying to write a function for this problem would be better. I assume that you want to add two line breaks if the string … ![]() | |
Re: No results because the LEFT JOIN finds no matches? If so, you may want to start with both months and join everything based on that. | |
| |
Re: Can you be a little more specific? |
The End.