Daniel0
Staff Alumni-
Posts
11,885 -
Joined
-
Last visited
Everything posted by Daniel0
-
Booooooo *throws rotten food*
-
There is also justfuckinggoogleit.com. The other one is better though.
-
http://lmgtfy.com/?q=%22facebook+connect%22+site%3Afacebook.com&l=1
-
Links in Some of the READONLY threads not working
Daniel0 replied to php_help's topic in PHPFreaks.com Website Feedback
For example this link http://www.phpfreaks.com/forums/index.php?showtopic=32746&hl= from http://www.phpfreaks.com/forums/index.php/topic,31047.0.html does not work -- goes to forum index That is because that link is from when we ran the old software a long time ago. Before I was admin, and before I was even a member here. -
Links in Some of the READONLY threads not working
Daniel0 replied to php_help's topic in PHPFreaks.com Website Feedback
If you have links for really old topics they won't work. The forum software was changed in mid-2006, so the URIs will have changed at that time. -
You can watch the output of top and you can use time to see how long it takes for a task to finish.
-
I would point you to a blog post I once wrote, but yeah, my host is down Short answer: Not going to happen. Mathematically impossible.
-
Assuming you're going to use an RDBMS like most people do you'll have to learn a dialect of SQL. You'll need to learn a language for the server side like PHP, Python, Ruby, Java, Perl, C#, etc. On the front end you would need to at minimum learn HTML and CSS, but Javascript would be pretty important as well. Knowledge in OOP and OOD would be a benefit, and knowledge in methodological topics such agile programming as well as either or both of TDD or BDD would help you as well.
-
Intellectual property laws. Still a crap deal though. In fact I think it's somewhat of an insult even asking for that. I bet they wouldn't ask someone to build three houses and then they'll pick whichever they like best.
-
What kind of skills do you actually have? I assume you're talking about this. Do you have any experience beyond following that course? If not then I think you'll find it very difficult getting someone to pay you $70,000/year.
-
Well, they already had MSN/Live search which had a market share. That's redirected to Bing.
-
Define "doesn't work".
-
It is possible.
-
PHP include function. One page only? Alternative function
Daniel0 replied to violetradio's topic in PHP Coding Help
You wouldn't want to do that. It makes RFI attacks really easy (Google it). -
Halo 3 Saved Film HD Recording Service - Testers Needed
Daniel0 replied to HaLo2FrEeEk's topic in Beta Test Your Stuff!
If you don't want feedback, don't ask for it. Neither do I. He is 23. Says so on his profile. Besides, what does that have to do with anything? It was pretty damn easy submitting the form without agreeing to your ToS, price acceptance, etc. Just remove the onsubmit attribute on the form. -
If nobody responds it's because nobody knows or because you phrased your question poorly. Bumping won't fix any of that. Of course it's all explained in our rules, so you already know that
-
$mins = 133; $hours = (int) ($mins / 60); $minutes = $mins % 60; echo "{$hours} hours, {$minutes} minutes";
-
[SOLVED] A thought about the home page
Daniel0 replied to gevans's topic in PHPFreaks.com Website Feedback
That is part of the new design. -
I've been running Vista since it was released and I've never had any issues with it. If you're getting viruses or spyware you're just stupid (see CV's post). It's that simple. The other day I decided to install a spyware checker just for fun. It found one so-called "tracking cookie" from Doubleclick.com or whatever it's called. I don't regard the UAC thing as a valid argument because it can be turned off. Moreover, if you constantly get prompted you're doing something wrong. Normal day-to-day usage shouldn't result in a UAC prompt unless the software you use is poorly written. Next we have memory consumption. I don't know about you guys, but I buy my RAM with the intentions of using it. Unused RAM is wasted RAM. The reason why it uses more RAM than XP is that it caches a lot of things, but it gives it back if other programs need it. Vista got some bad reputation because driver and software vendors were too slow to release upgrades, so in the beginning there was some BSOD issues and software compatibility issues. There was also some confusion about the stickers that were put on computers. Basically, Microsoft had a different opinion than the consumers about what constitutes "working" and being "capable". Those two stickers would mean that it can run the core functionality, but without all the bells and whistles. Only the "certified" computers could do that. When you say that "Microsoft products just plain out sucks", what do you base that on? Vista sucks, but you don't use it. Okay. It sucks because some people shouting loud say so and because it's different and I don't want to adapt. Zune is pretty good, Bing is not too bad either and IE is getting much better. There is not even any competition between MS Office and OO.o as far as I'm concerned. I hear people saying that Visual Studio is a great IDE well, and Windows 7 is generally regarded as a very good and stable OS although it's a only a release candidate. Then there are their research groups out of which come interesting products such as Surface. Yeah, I'd say they suck as well.
-
You also need to call session_start() on the login page.
-
Because when setting $_SESSION['user'] = $user, the variable $user is never defined thus it'll always evaluate to FALSE. Also, please take a look at this function (though it is unrelated to this particular problem): mysql_real_escape_string
-
A regular if statement within the loop should do the trick.
-
[SOLVED] using $english_format_number = number_format()??
Daniel0 replied to seany123's topic in PHP Coding Help
Well, then remove them. You were the person who added it... $msg .= "You have transferred <b>" . number_format($Pamount) . "</b> points to <b>$username</b>.<p />"; -
[SOLVED] using $english_format_number = number_format()??
Daniel0 replied to seany123's topic in PHP Coding Help
Well, then what do you want? -
[SOLVED] using $english_format_number = number_format()??
Daniel0 replied to seany123's topic in PHP Coding Help
$msg .= "You have transferred <b>\"" . number_format($Pamount) . "\"</b> points to <b>$username</b>.<p />"; Like that?