Daniel0
Staff Alumni-
Posts
11,885 -
Joined
-
Last visited
Everything posted by Daniel0
-
I think it works pretty fast(/normal) for me. Maybe it is your computer or internet connection?
-
I'd place them in one file if that were the only options. But if I did this myself I would store them in classes categorizing the functions, each with their own file. For instance a timer class, a cookie handling class, a session handling class etc.
-
It can edit the CSS and HTML as well.
-
If you mean Web Developer, then there isn't, but you can make it come up in the bottom, right side, left side and top by clicking on the position button. [attachment deleted by admin]
-
It isn't even a tag cloud. Read this: http://en.wikipedia.org/wiki/Tags http://en.wikipedia.org/wiki/Tag_cloud Tags are keywords, therefore a tag cloud is based upon the number of things (here: code snippets) that has a tag.
-
No taxes in Denmark? Yeah, but don't you pay taxes in US as well?
-
A Microsoft laptop?
-
In Denmark all education is free
-
I think he wants to provide a hosting service.
-
I never really read my code aloud, but I have sometimes wondered how I would explain some code if I had to since I do not know the names. -- [quote author=redbullmarky link=topic=96282.msg534430#msg534430 date=1172008707] i normal say "owns" (in my head of course). not cos i'm some sort of 10 year old gaming txt spkr, but because that's how i kinda got to understand it. $this->that (this owns that, or that belongs to this) $b->a (b owns a, or a belongs to b) [/quote] 0wn3d!!!1!!one1
-
Holding your breath for an hour should take care of it forever. Works always.
-
Yeah, they disappear with single-clicking, double-clicking and triple-clicking. They get you to another page
-
This has been asked many times and each time the admins said that it wouldn't be changed. Besides, I don't think it is particularly intrusive, in fact I almost never look at it. But if you don't want it, then why don't you go donate some money each month, I'm sure they could tell you the amount of money they make from the ads.
-
Yes. You need to download the ISO files from their website and burn them to a CD/DVD. Then place it in your CD/DVD drive and boot into the LiveCD/install cd.
-
You might want to make your site work in all browsers instead of making layouts for each browser. Table-less layouts should help that.
-
[SOLVED] how to send my result through email
Daniel0 replied to nelquintin's topic in PHP Coding Help
You would use the mail function. -
Beryl alongside your normal desktop handler (I don't know if supports other than Gnome though) is really cool. [url=http://www.beryl-project.org/features.php]Screenshots and features[/url].
-
How other commercial products create their serial keys is a secret as if you knew how to you would be able to make key generators and valid keys yourself (some reverse engineer it and find out anyways though) unless it is validated by a server somewhere. You can make your algorithm anyway you want. Basically you should take some values and pass them into a function that would create the key from them. It should also result in the same key each time the same values are passed to the function. You could do it like this: <?php function generate_key($name, $email) { $var = sha1($name).sha1($email); $key = substr($var,strlen($name)+strlen($email), 10); $key .= "-".substr($var,strlen($name)+22, 10); $key .= "-".substr($var,strlen($name)-17, 10); $key .= "-".substr($var,strlen($name)+5, 10); $key = strtoupper($key); return $key; } echo generate_key("John Doe", "[email protected]"); // outputs: 904FAD297B-31E9CF6362-CB35071C5-B460503904 ?>
-
It looks exactly the same in both FF2 and IE7 for me...
-
I think it looks really great. The search feature doesn't work though. I don't know if it isn't supposed to. On the comment form... I think the form fields should look like the search field in the top.
-
Do something like SELECT * FROM reginf WHERE email='{$email}' and then if(mysql_num_rows($result_here) > 0) { echo "email exists"; } Also, it isn't necessary to redeclare all the variables. Just access them directly