130 Posted Topics
Re: Why is this crap not deleted? Anyone who so blatantly ignores the rules should not only have the thread deleted, but be banned for a long time. If I recall, after you register, you are sent to the "rules" thread (not 100% sure) where it specifically states that for you … | |
Re: Why are people like [B]hajiakbar[/B] not banned immediately? Zero effort in even coming up with a simple algorithm for adding/subtracting/multiplying/division. To kbshibukumar: This is someone you may end up working with in the future! *shakes head* I read those popular sites like codinghorror.com and you'll be surprised how easy it … | |
Re: Hi thecoolman5, First off, I think you should always create your own thread rather than asking questions in a thread created by someone else. However, welcome! The way to convert from scientific notation to regular integers is done using the [I]setf[/I] member function. For instance, by setting the formatting flags, … | |
Re: You might have turned off page styles for your browser. In Firefox, click on the View toolbar menu, go to Page Style and select Basic Page Style. | |
Re: [QUOTE=ardav;1412645]Plenty of people here would know HOW to build one. Why the hell SHOULD anybody here help you? You don't seem to have put any thought into this yourself. You join up and in your first post demand answers that you as a 4th year BSIT should be developing yourself. … | |
Hi Daniweb, I've got a question regarding what I call "dynamic URL rewriting" -- which is probably the wrong term -- and need some help. OK, so basically, I know how to rewrite the URL for static pages (i.e. have "localhost/index.php" also work as "localhost/index". However, let's say I have … | |
Re: Only book I'd recommend: [url]http://headfirstlabs.com/books/hfhtml/[/url] | |
Re: [CODE] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang="en-US" xmlns="http://www.w3.org/1999/xhtml"> <head> </head> <body> <ul> <li> <a href="link.html">Link</a> </li> <li> <a href="link.html">Link</a> </li> <li> <a href="link.html">Link</a> </li> </ul> </body> </html> [/CODE] | |
Re: Here's a much better example. [URL="http://www.simplemachines.org/community/index.php?P=609d2dbe770148410b821c52f9fad760&topic=259743.msg1690853#msg1690853"][SOURCE][/URL] | |
Re: Would you care to explain what it is you're trying to do? Are you trying to use a JavaScript function to output HTML divs using an XSL stylesheet? | |
Re: Change the [B]margin-top[/B] value from -36px to -38px for #sidebar-wrapper. | |
Re: Here's how the include file is called... <?php include("filename.php"); ?> There is no <td> before and after the include... | |
Re: You don't have border styles defined... | |
Re: Blastoise, Assuming you're in college (and courses started at the end of August, start of September), it would mean two months have passed in the semester. Are you telling me you don't have a clear understanding of how "if-else" statements work? Anyways, here's an example of the type of program … | |
Hi Daniweb, I have a question for you guys. I've been reading up on PHP security and want to get it down pat before embarking on some projects I wish to do. The question right now is about how to create a table with PHP that will enable SHA1 hashing … | |
Re: Hi timpogue, I'd recommend you use JavaScript to return the value dynamically. PHP, by itself, is not capable of doing so (that I know of). It would have to be used in conjointly with AJAX or something of that sort. Also, do you mean you enter "2 + 2" or … | |
Re: Why not use a customized Google search? [url]http://www.google.com/cse/[/url] | |
Hello daniweb, I'd like to know if it's possible for a newsletter to check which email client is rendering the content and based on which one it is, it would create a link for the best possible viewing solution. For instance, if someone has Outlook 2003, I want to create … ![]() | |
Re: The biggest problem is you are using classes and not inline styles. Being that outlook express (and many other clients) have trouble with using <style> blocks, you need to do everything inline. It's going to be a lot of hard work, but that's the way it has to be built … | |
Re: I see floats but I don't see a clear. Try to "clear" after the floating <div> LOL. | |
Re: JavaScript. The top-level bars ("Products", "Windows", etc) pass a javascript function from their <a> tag. | |
![]() | Re: Set the height of #page equal to the height of the image and it should work. |
Hi Daniweb, I'm unable to edit a file in Split View using Dreamweaver. The file is based around a template, but the region is editable when changing the code in split view, but when attempting to change the info with the WYSIWYG, it shows a black circle with a diagonal … | |
Re: Did you make sure to [B]clear [/B]your [B]floats[/B]? [CODE]<!-- left float div --> <div class="left" style="float:left;">...</div> <!-- right float div --> <div class="right" style="float:right;">...</div> <!-- clear floats --> <div class="clear" style="clear:both;">...</div>[/CODE] | |
Re: The variable example works, but there is a much easier way to do it (in my opinion). Let's say, in your XML, you have the element "events" repeating 31 times -- indicating 31 events -- and you want each one to have a unique ID. In your XSL sheet, you'd … | |
Re: Hi teedoff, I took a look at your code and I think I found the problem. After resizing to a very small browser, I saw the table "sticking out" past the white content area and going into the gray background area. Analyzing the code, I saw that you are using … | |
Re: Did you get it fixed? I can't seem to find any problems with the page. | |
Re: Add a background-repeat:no-repeat in the <td> that holds the background-image. I tested it and it worked well. [CODE] <td height="32" background="images/up.png" width="0" style="background-repeat:no-repeat"> [/CODE] | |
Re: Figured out the problem. You didn't [B]clear[/B] your [B]floats[/B]. Between #headstrap and #navbar (after #headstrap <div> ends and before #navbar <div> starts), place a new div such as this: <div style="clear:both;"></div> to "clear" your floated divs. After that, it should work 100% correctly. | |
Re: That's a pretty simple thing to do. Create a variable called "evenOdd" and have it be even if the position() of the loop modulus 2 is equal to 0. If not, have it be odd. Let's say you have a calendar XML file with the following format (where the dots … |
The End.