Search found 1179 matches

by Temor
Wed Jun 01, 2011 6:11 pm
Forum: General Chat
Topic: Simple HTML & CSS design help needed!
Replies: 10
Views: 1636

Simple HTML & CSS design help needed!

Hello to whoever reads this! I'm looking for someone who can design a really simple html & css layout for a small project I'm doing ( nothing serious ). I really can't design, at all, and am therefore looking for someone with atleast basic skills in designing. What I want is something that looks...
by Temor
Wed Jun 01, 2011 5:24 pm
Forum: Tutorials
Topic: Issue with mailing list
Replies: 71
Views: 10345

Re: Issue with mailing list

nl2br() will replace linebreaks with <br / > tags, is that what you are trying to do ? Basically I have assigned the mailing list to send mail as a html. Now the send_mail.php (from the mailing list tutorial), I want when I write in message box and I press the enter key it already does it does a li...
by Temor
Wed Jun 01, 2011 2:00 pm
Forum: Tutorials
Topic: Issue with mailing list
Replies: 71
Views: 10345

Re: Issue with mailing list

pasqo83 wrote:Thank you again Temor :D :D
You're welcome!

Hopefully, you'll help me when I'm stuck as well :D
by Temor
Wed Jun 01, 2011 7:53 am
Forum: Tutorials
Topic: Issue with mailing list
Replies: 71
Views: 10345

Re: Issue with mailing list

I'm going for pretty much the same approach this time.

Try changing
('email') VALUES (`{$email}`)
to
(`email`) VALUES ('{$email}')
by Temor
Mon May 30, 2011 11:20 pm
Forum: Tutorials
Topic: Issue with mailing list
Replies: 71
Views: 10345

Re: Issue with mailing list

try changing this line: mysql_query("DELETE FROM `users` WHERE `email` = `{$email}`"); to mysql_query("DELETE FROM `users` WHERE `email` = '{$email}'"); ( i.e change `{$email}` (backticks) to '{$email}' (semicolons) ) /// You could also remove the bacticks from this: WHERE `email`
by Temor
Mon May 30, 2011 7:44 pm
Forum: Code
Topic: Learn WebDev Inc. Framework
Replies: 15
Views: 5991

Re: Learn WebDev Inc. Framework

jacek wrote:Where is the example ? :?
In the custom_config_file folder.
by Temor
Sun May 29, 2011 3:41 am
Forum: Suggestions
Topic: IRC?
Replies: 22
Views: 7985

Re: IRC?

jacek wrote:
GenSwat wrote:no one on it
Yeah, this (slightly predictably) failed. :lol:

Worth a try ;)
We need more active members ( I'm thinking around 500 total members and about 60-100 active members ) for this to work.
by Temor
Sun May 29, 2011 3:39 am
Forum: Suggestions
Topic: PHP Game
Replies: 12
Views: 2370

Re: PHP Game

To go massively off-topic, would videos on javascript or html/css things be good ? Or should I stick with php ? Stick to php. It makes you focus on bringing us high quality tutorials in php, instead of spending your precious time doing html tuts. And also there is like a million html and CSS tutori...
by Temor
Fri May 27, 2011 8:35 pm
Forum: JavaScript
Topic: Popup login
Replies: 2
Views: 982

Popup login

I'm not quite sure as to where I should post this question. I want to have a " Popup " login screen, where you click a button and a small box pops up to the top right of the page ( like a drop-down menu kinda thing ) containing the login form, and when you press login it closes the window ...
by Temor
Fri May 27, 2011 7:01 pm
Forum: General Chat
Topic: Google search terms.
Replies: 11
Views: 1440

Re: Google search terms.

It's someone's signature here in the forums Its pasqo83 Empty your mind, be formless like water. If you put water into a cup, it becomes the cup. You put water into a bottle and it becomes the bottle. You put it in a teapot it becomes the teapot. Now, water can flow or it can crash. Be water my fri...
by Temor
Wed May 25, 2011 7:25 pm
Forum: General Chat
Topic: Do people hate Americans?
Replies: 21
Views: 2993

Re: Do people hate Americans?

EcazS wrote:
unemployment wrote: We tend to work too much,
Move to Sweden, 8 hours per week. Sweeeet :lol:
I do hope you mean per day, or I've been so screwed over.
by Temor
Wed May 25, 2011 4:07 pm
Forum: General Chat
Topic: New Servers ?
Replies: 22
Views: 3215

Re: New Servers ?

jacek wrote: free hosting, game servers
That would be so awesome!! :)
by Temor
Tue May 24, 2011 3:42 pm
Forum: PHP
Topic: Date() function showing the wrong time.
Replies: 2
Views: 626

Re: Date() function showing the wrong time.

jacek wrote:You can set the timezone with date_default_timezone_set(), for a list see http://www.php.net/manual/en/timezones.php
alright, thank you :)
by Temor
Tue May 24, 2011 2:12 pm
Forum: PHP
Topic: Date() function showing the wrong time.
Replies: 2
Views: 626

Date() function showing the wrong time.

So, my server is being hosted in a different timezone ( 2 hours difference ) and I use the date() function to insert the time into a database for a blog, but it shows the servers current time, and that tends to be quite irritating... Is there any way to insert MY current time into the database inste...
by Temor
Sun May 22, 2011 10:58 pm
Forum: General Chat
Topic: Community Project
Replies: 3
Views: 754

Re: Community Project

unemployment wrote:Would anyone want to work on a community project? Any good ideas floating around out there?
I got an idea and is currently working with a few people to make this happen. Will definitely post here if I need more people! :)
by Temor
Sun May 22, 2011 3:50 pm
Forum: JavaScript
Topic: wp-cumulus
Replies: 3
Views: 961

Re: wp-cumulus

It is open source, so you could just have a look at the source code and try to recreate it?

Here's the download link: http://wordpress.org/extend/plugins/wp- ... /download/
by Temor
Sat May 21, 2011 11:00 pm
Forum: SQL
Topic: MYSQL deletes wrong entries.
Replies: 5
Views: 1276

Re: MYSQL deletes wrong entries.

jacek wrote:Well. After the while loop this variable will hav the value of the last row processed. Did you mean to use the value from $_POST ?
Yeah, of course, my bad! :P

Total brainfart!

Edit: It's working like a charm now, thank you :)
by Temor
Sat May 21, 2011 10:13 pm
Forum: SQL
Topic: MYSQL deletes wrong entries.
Replies: 5
Views: 1276

Re: MYSQL deletes wrong entries.

jacek wrote:Where do you define $postid ?
line 13
while($row = mysql_fetch_assoc($queryget))
{
$postid = $row['id'];
by Temor
Sat May 21, 2011 9:29 pm
Forum: SQL
Topic: MYSQL deletes wrong entries.
Replies: 5
Views: 1276

MYSQL deletes wrong entries.

this code right here : if(isset($_POST['postid'])){ $deletepost = "DELETE FROM chat WHERE id='".$postid."' "; mysql_query($deletepost); } ?> is supposed to delete the post with the corresponding post id. But instead, it deletes the oldest entry in the database. Here is the full c...
by Temor
Fri May 20, 2011 3:00 pm
Forum: General Chat
Topic: Website Hacked :|
Replies: 5
Views: 912

Re: Website Hacked :|

Kamal wrote:
Temor wrote:your server seem to be down or something. Got a 403 error.
It is not down and I do not get a 403 error. What page was that?
All of them. Still get it.
403 Forbidden

You don't have permission to access / on this server.