- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 3
- Posts with Downvotes
- 3
- Downvoting Members
- 3
34 Posted Topics
Re: homemade Swiss and steak sandwich and in a few moments I'll be drinking a Mocha Cappuccino. | |
Re: :) I am listing to the not so exciting sounds of a air pump on a aquarium. I will be listening to a various artists from the album iWorsh!p. The grammar in the name of the album is correct if your wondering if I might have misspelled it. | |
Hi I am designing a templates for a developer and for some reason or another my left and right borders are not adjusting right to the height of the div container. you can take a peek at it to see my lovely css mistakes [url=http://lime.dwdcweb.info/keylime/index.php]here[/url]. Could you assit me with … | |
I am attempting to read the access log for squid and store the last position read so it does not have to reread the file. I am running into many problems with my current code for it. I was wondering if you can help me write a more efficient code … | |
Re: [QUOTE=vibhadevit;1246199][CODE] <? $currTime = date('H:i'); if($currTime >= "08:00" && $currTime <= "20:00") { ?><a href="#">Time is between 8:00 am - 8:00 pm.</a><? } ?> [/CODE] Try this code.[/QUOTE] Nicely done! | |
I am having an issue with my multimap insert. I have looked high and low for a possible solution to this problem. What I am trying to do is make an dynamic hierarchy data structure that has a root element then child elements under it holding values. I thought using … | |
Re: you might be able to use htmlspecialchars(): [URL="http://us.php.net/manual/en/function.htmlspecialchars.php"]http://us.php.net/manual/en/function.htmlspecialchars.php[/URL] | |
Re: you could use php sessions. here is some examples of it: [URL="http://us.php.net/manual/en/session.examples.php"]http://us.php.net/manual/en/session.examples.php[/URL] | |
Hi! I am trying to develop two columns that are side by side with in the "content" div. As of now the the columns is not forcing the "content" div grow with the columns. I am completely stumped and I could use your help? Here is the html for the … | |
Re: [QUOTE=Chainsaw;63148]Hot Fudge Sauce Well, Naru contributed breakfast, Kc dinner. Here's dessert.... [code] class AHotFudgeSauce : public ARecipe { protected: // ingredients EvaporatedMilk m_milk; // NOT sweetened condensed Sugar m_sugar; Chocolate m_chocolate; Vanilla m_vanilla; Salt m_salt; Butter m_butter; public: // although, private might be the way to keep your friends coming … | |
Lets say I have two functions that I want to run simultaneously for different purposes as example a function handles an XML RPC requests and the other function handles an IRC connection to an IRCD. what my goal would be to avoid program hang ups on user requests. Is pthreads … | |
hello I am trying to create an robot and I have been having a problem parsing the full string from the conf. As example the IRCServer, botnick, botname parameter does not contain the all the data. as the output shows: [code=output] ##################### # Ablaze Bot # ##################### Loading conf file: … | |
I have a colleague that wants to enable the chances to win a prize for completing a task on one of our sites. I was wondering what is you views and thoughts about offering prizes from a marketing stand point and your point of view from a user stand point? … | |
I am pondering what I could do to improve [url]http://www.mlwehelp.com[/url]! any suggestions? Part of this update I plan to rework everything even my services like getting way from everything being free. Any suggestions on pricing based on the industry standards? my main goal is to deliver reasonable prices based on … | |
I get an error (Object doesn't support this property or method) on 56. In Internet Explorer and I would like to try to keep it cross browser compatible. This is the source of the function: [CODE=javascript]SM.Util.prototype.constructor.Notify = function(txt) { chat = document.getElementById('chat'); //this is line 56 and chat is a … | |
I have been working on an email validation functions that would validate the e-mail and I am having problems communicating the "EmailState" from the ajax. The state the php gives is 1 if the email address exists and zero if it doesn't. I do this check with Email_Exists() and when … | |
At the moment my record is two. Like right now I am upgrading fedora on one and chatting here and coding as I speak. Well, more of chatting then coding. | |
Re: You have my permission. :) In other words I permit you to have fun with the robot. I remember the days I designed a couple of php robots. I loved every moment of it. | |
When I looked at Get started tutorial at Jquery.com I thought that it took more code in the Get started tutorial then it would just writing it myself. I really did not see any pros so I am asking this question. What are some advantages Jquery has? I just want … | |
Re: The only reason I would use bing is for SEO stuff. I am google junky that would delete any windows partition on the computer he uses when he has not been forced to use windows like for school as a lame excuse. | |
Re: It is a combination of JavaScript libraries the image library you saw can be found at [URL="http://www.mind-projects.it"]www.mind-projects.it[/URL] somewhere and you can put it on your site because it has a GPL license. | |
![]() | Re: Hello! Welcome to the forum. Is there anything you want to learn about? As for me I can teach you about websites and some of the things that go on in the background to make them happen like processing user data to even managing the computers that run the programs. … |
Re: one method you could do is use adbrite.com there software is designed for low traffic sites/they give advertisers that may want to advertise on your site a opt in link. Adbrite they have a better conversion rate per impressions also then google does. LOL! I wish I could chime in … | |
![]() | Re: [URL="http://www.tizag.com/phpT/fileupload.php"]http://www.tizag.com/phpT/fileupload.php[/URL] One of the things I would do for security reasons do a check on the file extensions. [code=php] list($name, $extension) = explode(".", $filename); if(strtolower($extension) == "gif" || strtolower($extension) == "jpg" || strtolower($extension) == "png") { echo "Your a good person!"; } else { echo "You bad, bad person. You … |
Re: [QUOTE=sknake;961982]Take a look at /var/log for messages that occur shortly before the shutdown. That usually gives you a good indicator.[/QUOTE] I agree that is a great place to start you might find the info your looking for in like /var/log/messages; /var/log/boot.log. If it is a service like httpd or any … | |
Re: wow! That task you set out for is huge. Every second I sit here typing there is a probably a new job title and a whole new set of skills involved. What you found so far? I am curious so I do not find you something you might have already … | |
I am bored watching Fedora upgrade and I do not know where to begin on a section of one of my clients software. I am a bit new to developing financial software so I thought to take a little break and say hi to daniweb/be an active member. ;) | |
Re: There is a couple ways you can solve this. One way is pre-query to see if it exist. In my opinion this is the easiest method of checking if the row exists. The only disadvantage to this method is that it take more time writing code and it can take … | |
Re: I apoligize for suggesting this, but I noticed that you use 'echo "<meta http-equiv=\"refresh\" content=\"0;URL=change.php\">";' and 'echo "<meta http-equiv=\"refresh\" content=\"0;URL=admin.php\">";'. There is a better method of redirecting users it also has less over head I think on both sides of processing the web page/there is less typing involved which makes … | |
Re: Hello! I am in the mood to help you not only fix it but improve your script so you do not have to reload the page to get the sub categories using AJAX. I am sorry I did not test this code completely, but it should work in theory. This … | |
Re: the three banners you want to display could use similar code as your top banner. I know this next idea is a bit off topic but can I recommend using AJAX/PHP/MYSQL to handle retrieving the banner and log user info like browser used ,the member id, etc? You can even … | |
For the last three days I have been working on developing a view panel that will display the users site stats and there sites info on one of my site. I plan to use a absolute div with a title bar that is the handle for the drag and drop … | |
Just saying that I am new member on dani. As computer geek I spend most of my time debuging php/mysql/ajax interfaces, Hardcore SEO stuff, and Internet PR. :) |
The End.