- Strength to Increase Rep
- +12
- Strength to Decrease Rep
- -3
- Upvotes Received
- 66
- Posts with Upvotes
- 64
- Upvoting Members
- 42
- Downvotes Received
- 6
- Posts with Downvotes
- 6
- Downvoting Members
- 6
- PC Specs
- Desktop ======= Intel Celeron @ 2.75 GHz Mem: 4 GB OS: Win7 / Ubuntu 10.10 / Haiku Laptop ====== AMD…
430 Posted Topics
Re: [CODE]time() date_create('15 days ago')[/CODE] | |
![]() | Re: It's not java, but javascript, but never mind. Did you check the source, are the image tags okay? What does your dummy thing look like (are there any differences other than source and title)? |
Re: As far as I understand those things, you need to make Apache (or whatever server you use) look for your new php version. | |
Re: You could add lang="en-AU" to your html tag, and with the Content-Language header. | |
Re: You can't block the print screen key, and be happy it is like that. | |
Re: That would be 38: floor(2723 * 1/6 * sqrt(3) / 20.25). [B]New puzzle #11[/B] (posted it somewhere else also): Is there a sequence of valid moves in chess that leads to the following (explain): [img]http://twiss.nl/chess.png[/img] | |
Re: 1. Don't. It's annoying - and if someone wants to get something from your site, it will happen anyway. 2. You can't. | |
Re: You need to first cancel the timeout (google that). | |
Re: How do they think they're going to help removing the malware if they don't know its name? What does the 'Learn how to fix this' page say? | |
![]() | Re: It may be my personal preference, but could you remove all that code (on mobiles, it's a bit of a pain to scroll down 60.000 pixels)? Honestly, I don't expect that anyone here is going to re-write that script so that it fits your exact needs. There are a lot … |
Re: It depends on what you like and what you want? | |
Re: First of all, think of which versions of IE you want to support; IE6 and IE8 are a whole different story. Second, all the different quirks in IE are quite well documented, along with workarounds. You might want to look them up. Third, as for javascript (I know that's not … | |
Re: Always start with javascript, not jQuery. For example: [url]http://www.tizag.com/javascriptT/[/url] ![]() | |
Re: I believe you're missing a semicolon (didn't look to the rest in-depth, but some things seem strange to me). Besides, if you put your code in [noparse][code][/noparse] and [noparse][/code][/noparse] tags and indent it, such errors are much easier to spot. Also, if you open a console in chrome (or whatever … | |
Re: I think you mean this: [CODE] <script type="text/javascript"> var url = "http://gamestoenjoy.com/site/test.php"; document.write('<script src="'+url+'">'); </script> [/CODE] | |
Re: Maybe you should just give the div's 100% height? (Could also try a search for that; css 100% heigth layout/div or something like that.) | |
Re: It might be just me, but I've got no clue what you want to do whatsoever. What are those values, where do they come from, what has to be done with them, what doesn't show correctly, etc. | |
Re: Why in hell would you want to do that? If you want to just cancel the submit before it even started, you could return false in the onsubmit handler. | |
Re: Could you post the string [icode]$datetime[/icode]? Anyway, [icode]strtotime[/icode] or [icode]date_create[/icode] might do the job. | |
Re: What doesn't work? Take a look at $.ajax and $.post. | |
Re: I always tend to open far too many tabs, and that's why I use Chrome. I love Firefox more, but when you open like 50 tabs (yeah, I hate closing tabs), it starts getting too slow for my taste (I once checked when it had 27 tabs open and it … | |
Re: Well, it depends a bit on what exactly you want to make. If you want a dynamically-sized website, use percentages. If not, the main parts of your website should (IMO) use the full width of the screen, [i]or[/i] have a fixed width and be centered. If you have specific issues, … | |
Re: I think they're meant to make sure the user provides his or her email address. | |
Re: Do you mean [URL="http://www.rostinventures.com/seo-consulting/reverse-seo-consulting.html"]trying to remove content from the web[/URL], or do you mean [url=http://www.reverseseo.com/]this company[/url]? | |
| |
Re: What are we supposed to do for you? If you want to make this, what did you try? If you have an idea how to do it, what's the problem? | |
Re: Nope, I don't think so. Google can't crawl mobile apps. Be sure to make clear the conditions, take a look at where the link is placed, and compare with the costs of Google Ads and the like. | |
Re: [quote=jingda]... and you will know go wrong[/quote] ..? | |
![]() | ![]() |
Re: You'll have to create a script that takes a template file and processes it. Come up with some simple syntax that is then replaced with content (for example, <!--# footer #--> or [[[footer]]] to create a footer placeholder). Or, you could just make them type <?= $footer; ?>, and include … | |
Re: I don't know if there's a policy for this, but personally I'd just use this one: [img]http://images.daniweb.com/logo.gif[/img] | |
Re: Why in hell would you want to convert C# to VB? @OP: As for the title of your post, with a tissue. As for the body, look for the folder the browser stores it in and delete everything in that folder :) | |
Re: Is it really that hard to do a search for "jquery shadow plugin" and "jquery gradient plugin"? | |
Re: I think you'll have to fire a new event, with keycode 9. | |
Re: Nope, that's not gonna work. You're now comparing strings, not dates. Try something like this: [CODE] $date1 = time(); $date2 = date_create('2011-09-17 11:51:21'); ... [/CODE] | |
Re: What you're doing isn't exactly the cleanest way to get an XMLHTTP object, but it should work, anyway. The database connection and data collection should happen, now, in rediger.php (i.e., the file you specify at line 21). The preferable way to, then, get the data to javascript is in my … | |
![]() | Re: What is your goal? What width do you want it to have? ![]() |
Re: [QUOTE=Ken Peterson]our search results[/QUOTE] :) (There's also a thread on that there: [url=http://www.daniweb.com/internet-marketing/search-engine-optimization/threads/370201]Look of Google search results[/url].) | |
Re: You need the child selector, not the descendant selector; [CODE] $("#table1 > tr:odd").addClass("odd"); $("#table1 > tr:not(.odd)").addClass("even"); [/CODE] | |
| |
Re: How did you create the pdf, and how did you create the links? It might be that the only reason that you can click them on a pc, is that your pc app figured that it's a URI. It might help to explicitly tell the app you create them with … | |
Re: Percentages and 'em's are sometimes better than 'pixels', it depends. Read: [url]http://www.w3.org/Style/Examples/007/units[/url] | |
Re: [CODE]<div><img/><a>bla bla</a></div>[/CODE] ... should do that. Unless you mess it up with css :) | |
Re: Yes, that should be possible (but if you can add javascript, why can't you add CSS?). But what did you try, what is the html you want to make a dropdown menu of, et cetera? We're not going to write the whole thing for you. There's a lot to find … | |
Re: I would swap the colors - blue on white. | |
Re: You could instruct your users to "right click and select save on disk" or something like that. If that's not what you want, there are some headers you can use for this. Copied from [url]http://elouai.com/force-download.php:[/url] [CODE] header("Pragma: public"); // required header("Expires: 0"); header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header("Cache-Control: private",false); // required … | |
Re: You could put it before it, and replace [icode]$_GET["id"][/icode] on the line with [icode]$my_id[/icode] (but [i]please[/i], name it something more useful :)). But personally I would never do this, it needlessly consumes memory and CPU cycles. It's a [i]notice[/i], don't worry about it. |
The End.