11,554 Posted Topics

Member Avatar for Somno

Hey there Somno! Welcome to DaniWeb. I hope you enjoy yourself ... whether it's by helping others or getting help yourself.

Member Avatar for the_shark
0
121
Member Avatar for jewboy

That explains why my mom came into my room earlier today and started saying how Ask Jeeves has been all over the television lately. :) I'm wondering what this will do to the search engine market ... isn't Expedia owned by MSN?

Member Avatar for the_shark
0
370
Member Avatar for Acidburn

I am not entirely sure at all, but I don't think you can use cin to populate an array of characters. I think you might want to use cin.getline()

Member Avatar for Acidburn
0
456
Member Avatar for OurNation

I split your thread off from the SEO thread since it wasn't exactly relevant. Don't hijack threads ;) In any case, it's because more people who read Tek's post have rated his threads I guess. Or maybe everyone just likes him better. :)

Member Avatar for Tekmaven
0
106
Member Avatar for zeroth

Christian, too, has been constantly yelling at me for the ad overlapping the links at anything smaller than 1024x768 with certain combinations of operating systems and browsers. (with others, when you shrink down to 800x600, the links wrap down to the next line so nothing is overlapped). Regardless, I am …

Member Avatar for zeroth
0
199
Member Avatar for Dani

About 3 weeks ago I got a new video card, an Nvidia Geforce 4 ti, made by Asylum (basically an unknown brand). At the same time as I installed it, I reformatted my computer. This all happened less than a week after Nvidia released new DetonatorXP drivers. So I reformatted. …

Member Avatar for JANINE
0
705
Member Avatar for shortd81

Do you have any experience with writing database queries? You would actually just create a page called rss.php and in it you would write PHP code to query the database for the last 10 or so entries. Then, you'd loop through each entry. Suppose an entry consisted of an article …

Member Avatar for notepage
0
149
Member Avatar for Atomica

We used to allow guest posting here a long time ago. It wasn't very beneficial. Most posters registered, and those who didn't, only posted on the site to spam. Until quite recently we allowed guests to REPLY to existing threads in the Geek's Lounge. However, that was stifled recently due …

Member Avatar for Libertate
0
193
Member Avatar for dolphin37

Hey there Dolphin! Welcome to DaniWeb. I'm a little confused what you're asking. Can you please go into our Windows or Internet Explorer forum and post your question in there - where you'll get much better answers than in here :) We're just your welcoming committee, after all! :-D

Member Avatar for nanosani
0
132
Member Avatar for Kmatt

[QUOTE=)BIG"B"Affleck]man this IE stuff is getting to be a real Joke thats why very few use it[/QUOTE] I disagree. Most Windows users use IE. I am a Windows power user and I still use IE over Mozilla or Opera. (Although Opera is very nice in its own right.) I won't …

Member Avatar for DMR
0
2K
Member Avatar for AlPhA

I think the ones that are based on solid languages will prosper ... C++ isn't going anywhere anytime soon - and you can write scripts in C++ ... asp, php, and coldfusion all seem to be hot right now alpha's right though, perl is going down the drain

Member Avatar for percent20
0
282
Member Avatar for janene

I've never heard of this. Are you using OS X? Your keyboard has a mind of its own in what sense? It randomly types things when you're not using it?

Member Avatar for mac9retireesoon
0
90
Member Avatar for kevin_smithers

I'm sorry I'm so late in my involvement with this matter. I was away at a convention the past few days and just arrived home last night. I agree the thread shouldn't have been locked, and am very happy with how everyone dealt with the matter. Enjoy!

Member Avatar for Narue
0
264
Member Avatar for aswettla

So true. While some other search engines still take meta tags in high regard, google practically ignores them. Afterall, anyone could just put whatever they want in them - even if it has nothing to do with what the site is about. Instead, google spiders the content on each page …

Member Avatar for jewboy
1
375
Member Avatar for php4ever

For Jared to say he used his "special permissions" to edit his post, I would assume he had moderator positions or at least was some high-up member on the site? To be honest, I'm not so sure I like the way that you edited the tutorial and replaced it with …

Member Avatar for Libertate
0
189
Member Avatar for Travis

Pulsetoday is run by a moderator around here, who is also a good friend of mine :) I'm not sure what he uses for his portal, you'll have to ask him yourself. I think a blog script unless he changed it. However, the vBulletin.org hacking community does offer some portals …

Member Avatar for Ted S
0
283
Member Avatar for profitblaze

Check out our Apache forum (it's a subforum within Web Hosting) for something called mod_rewrite. You should find your answer there :) What you're looking for can be done with an edit to your .htaccess file.

Member Avatar for PoA
0
132
Member Avatar for greenhorn

Until you have ten posts, no site advertisements are allowed. Once you've made ten posts on the site, you have the opportunity to use your forum signature and advertise there (as Pulse said) but you also have the opportunity to create a blog where you can link to your site, …

Member Avatar for greenhorn
0
203
Member Avatar for KFT0283
Member Avatar for Mabel
Member Avatar for DanceInstructor

It means that someone did a google search for "western dance" and saw your link and clicked on it. I belive the 10 and 11 numbers have to do with your position in the results and perhaps what page you're on. Not entirely sure of those two.

Member Avatar for OurNation
0
172
Member Avatar for rjeffers
Member Avatar for kc0arf
0
148
Member Avatar for techied

Hey there techied! Welcome to DaniWeb. A Pascal programmer are ya? We have a Pascal forum that's actually hidden away a little bit in our "Other Languages" forum, so check it out. Enjoy! ... gosh, aren't we all forum addicts! ;) Silly question, but what is a "parsec"?

Member Avatar for Dani
-1
132
Member Avatar for boham

You were actually right the first time about posting this in our MySQL forum, boham. (I deleted your post in here though). Regardless, what you're going to want to do is do a database dump of the old installation and run the queries to populate the new database. Do you …

Member Avatar for boham
0
159
Member Avatar for webdes

Hey there Ross! Welcome to DaniWeb. I think I've actually been to your site before actually. I'm going to take another look around. :)

Member Avatar for Dani
0
69
Member Avatar for jewboy

I know nothing at all about Spyware but given the huge amount of HijackThis logs around there, I have to vote for the tried 'n' true HjT.

Member Avatar for nanosani
0
57
Member Avatar for Dani

[b]Recursion[/b] Recursive functions are, interestingly enough, functions which call themselves. Instead of performing calculations by calling other functions, they call themselves by passing in different parameters each time. This forms an almost loop-like effect, where each time a simpler calculation is performed by the function. This is repetitively done until …

Member Avatar for wbk
0
169
Member Avatar for barracuda

Hey there barracuda! Welcome to DaniWeb :) Unfortunately, we don't allow affiliate or referral-type links anywhere around here, so I had to go and delete your URL. But you're welcome to stay, and participate in our community.

Member Avatar for jwenting
0
187
Member Avatar for fastcarz3

[code] int x, factorial = 1; cout << "Enter integer&#58; "; cin >> x; if &#40;x > 0&#41; &#123; while &#40;x > 0&#41; &#123; factorial *= x; x--; &#125; &#125; cout << "Factorial&#58; " << factorial; [/code] Untested, this might work.

Member Avatar for Narue
0
653
Member Avatar for VCLKhelp

Very nice intuitive interface for reporting. Good quality of advertisers - MUCH better than they used to be. Also, they're a big company, with a lot of power in the industry, so they have good pull from major advertisers. As far as complaints go, I would like to be able …

Member Avatar for pulse
0
185
Member Avatar for pulse

No ... as it is, I feel this limit is extraordinarily generous. The reason that vB code is included is because otherwise people could create an infinite number of links in their signature. For example ... 1 2 3 4 5 6 7 8 9 10 where each of those …

Member Avatar for Dani
0
133
Member Avatar for ep2002

The google API lets software developers and web dev programmers to write applications that can interact with google. For example, someone could write a PHP script that lets you input a URL and it shows the google PR of that URL. In other words, your program queries google behind the …

Member Avatar for Mena_MI
0
147
Member Avatar for YUPAPA

Well, we've got sessions and cookies in place so guests aren't double-counted. But basically, a large portion of our traffic comes from visitors coming into specific pages from google, finding what they're looking for, and then leaving. As far as today is concerned, we're currently being bombarded by Yahoo!'s slurp …

Member Avatar for alc6379
0
86
Member Avatar for Dani

We have a new member here to our community, and he goes by the name VCLKhelp. He works for ValueClick, the well known affiliate network which owns Commission Junction in addition to other properties. And he's here to help in this forum should anyone want to get assistance related to …

Member Avatar for floris
0
81
Member Avatar for Killer_Typo
Member Avatar for jaymora

Hey Jay! Welcome to DaniWeb. Check out our CPU and motherboard forum here: [url="http://www.daniweb.com/techtalkforums/forum104.html"]http://www.daniweb.com/techtalkforums/forum104.html[/url] - Good luck with your Athlon 64 ... I hope you get it all working the way you want. I hear that the 64-bit version of Windows XP is being released to manufacuring soon! ;) Something …

Member Avatar for big_k105
0
107
Member Avatar for Dani

When looking for an information-based forum where you could learn, would you rather belong to a close-knit community or a professional corporate site? For example, we all want to feel welcome in a forum. But there is a more family-oriented feel (such as this forum) or the more corporate feel …

Member Avatar for Dani
1
788
Member Avatar for myindya

There are no handles, as there are with the mac towers. Just pick it up with both hands ;) The same way you got it out of the box and onto the table / desk.

Member Avatar for alc6379
0
87
Member Avatar for castro1688

.NET is entirely object oriented from what I understand - there is no getting around it as with C++ and C doesn't support OOP at all. I don't know much else about it really. I'd really like to wish you the best of luck on your degree, but as far …

Member Avatar for cpopham
0
108
Member Avatar for OurNation

It looks as if it's a Japanese translation of a spidered version of DaniWeb, provided by Excite Japan. You're seeing question marks because you don't have the Japanese character set installed on your computer.

Member Avatar for wizmonster
0
148
Member Avatar for pcarlow
Re: Heya

Hey pcarlow :) Welcome to DaniWeb! Forum signatures are our way of thanking you for participating in our community. You can make full use of them, although there is a character limit in place by the forum software. (We're pretty generous, though!) Also, the forum system won't let you use …

Member Avatar for Dani
0
76
Member Avatar for Dani
Member Avatar for Dani

I have an automatic link directory where webmasters can submit their sites and swap links instantaneously. What types of features could I add to encourage its use and growth?

Member Avatar for YoungCoder
0
133
Member Avatar for veggiecook

Hello veggiecook! Having some problems with our WYSIWYG editor I see. You get that when you try to change the font using the tool at the top of the window and don't enter in any text into the popup that appears (which says "undefined" by default). To stop it from …

Member Avatar for veggiecook
0
71
Member Avatar for DanceInstructor

Oh wow. I never saw that happen before! Those double images are supposed to be confined to an IFRAME. I don't understand why they'd escape it. I'll look into it for you. Hmm ...

Member Avatar for Dani
0
211
Member Avatar for Busted
Member Avatar for shenry

Hey there Sharon, welcome to DaniWeb! Thanks for taking the time to register and to introduce yourself. I can always use some good advertising ideas. Maybe you could help us out in our Promotion Techniques forum :)

Member Avatar for Dani
0
45
Member Avatar for myindya

Hey there myinda, welcome! So you're a member of TAZ are ya? I was recently promoted to moderator there! :)

Member Avatar for Dani
0
140
Member Avatar for andyb88

Hehe. Hello Andy. Welcome to DaniWeb. You actually did post in the wrong place. Please check out our Windows forum here: [url="http://www.daniweb.com/techtalkforums/forum99.html"]http://www.daniweb.com/techtalkforums/forum99.html[/url] If your wife is using Windows XP, then you can post your question by filling out this form: [url="http://www.daniweb.com/techtalkforums/newthread.php?do=newthread&f=10"]http://www.daniweb.com/techtalkforums/newthread.php?do=newthread&f=10[/url] However, when posting, please be sure to include as …

Member Avatar for Dani
0
66
Member Avatar for cpopham

The End.