TalkPHP
 
 
Account Login
Latest Articles
» The basic usage of PHPTAL, a XML/XHTML template library for PHP
» Vulnerable methods and the areas they are commonly trusted in.
» Simple way to protect a form from bot
» The Basics On: How Session Stealing Works
» How to keep your forms from double posting data
IRC Channel
IRC Speech Bubble Join the friendly bunch on IRC...
(#TalkPHP on Freenode)

...Also available via a web interface.

See this thread for information on the TalkPHP Free Hugs Initiative™. Subject to availability.
Associates
Associates
CSS Tutorials
Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old 07-04-2008, 02:54 AM   #1 (permalink)
Dal
The Visitor
 
Dal's Avatar
 
Join Date: Jul 2008
Posts: 4
Thanks: 5
Dal is on a distinguished road
Default echo "Hello forum";

:D

Hi, been a member of another programming forum but came across this one. Thought Id register. I like these vBulletin systems so Im comfortable here. :)

Suppose I could ask my first question although its not really php related. Is there any popular Javascript forums that you guys use as my long standing membership with the other site has lost javascript members and I dont have a good community query?

Also whats the avarage response time for questions on here?

Thanks
Dal
__________________
Programmers are devices used for converting caffine to code. :D
Dal is offline  
Reply With Quote
Old 07-04-2008, 11:42 AM   #2 (permalink)
The Frequenter
Zend Certified 
 
Join Date: Sep 2007
Location: Denmark
Posts: 352
Thanks: 8
Kalle is on a distinguished road
Default

Hey Dal

I think the dynamicdrive had some active javascript related forums, also Mootools, jQuery (mailing lists, irc) ect. have forums on where most of it is JS related =)
__________________
Send a message via MSN to Kalle Send a message via Skype™ to Kalle
Kalle is offline  
Reply With Quote
The Following User Says Thank You to Kalle For This Useful Post:
Dal (07-04-2008)
Old 07-04-2008, 12:57 PM   #3 (permalink)
Dal
The Visitor
 
Dal's Avatar
 
Join Date: Jul 2008
Posts: 4
Thanks: 5
Dal is on a distinguished road
Default

Cool, thanks Kalle. Ive bookmarked this site for my php anyhow. Ill check them others out for the js side of things.

Kind regards
Dal
__________________
Programmers are devices used for converting caffine to code. :D
Dal is offline  
Reply With Quote
Old 07-04-2008, 01:12 PM   #4 (permalink)
Super Moderator
Inquisitive 
 
codefreek's Avatar
 
Join Date: Sep 2007
Location: Near you.
Posts: 791
Thanks: 241
codefreek is on a distinguished road
Default

Hello dal, welcome to the fine community talkphp hope you have a nice stay and you can ask me anything and i will try to help you, as best as i can!

Codefreek.
codefreek is offline  
Reply With Quote
The Following User Says Thank You to codefreek For This Useful Post:
Dal (07-08-2008)
Old 07-08-2008, 05:51 PM   #5 (permalink)
Orc
The Prestige
 
Orc's Avatar
 
Join Date: Dec 2007
Posts: 1,044
Thanks: 193
Orc is on a distinguished road
Default

Code:
#include <stdio.h> // PRINTF :D
#include <stdlib.h> // System function

int main ( )
{

	printf("Welcome Dal!");
	system("PAUSE");

	return (-1);

}
xD C code :D anyway welcome! :]
__________________
VillageIdiot can have my babbies ;d

Last edited by Orc : 08-02-2008 at 07:10 AM.
Orc is offline  
Reply With Quote
The Following User Says Thank You to Orc For This Useful Post:
Dal (07-08-2008)
Old 07-08-2008, 11:33 PM   #6 (permalink)
Dal
The Visitor
 
Dal's Avatar
 
Join Date: Jul 2008
Posts: 4
Thanks: 5
Dal is on a distinguished road
Default

Quote:
Originally Posted by Orc View Post
Code:
#include <stdio.h> // PRINTF :D
#include <stdlib.h> // System function

const char main ( )
{

	printf("Welcome Dal!");
	system("CLS");

	return (-1);

}
xD C code :D anyway welcome! :]
Ah, good old C/C++. I remember all of that from my Borland days, then realised that I really needed to learn Visual C/C++. Its been on my "to learn list" for a decade now :)

It always made me giggle when I used to write stdio.h. The way I used to remember to write is was always the same "sexually transmitted disease from a bit of input output" :D
-Maybe I shouldnt have really shared that with anyone

Thanks everyone for your warm welcome.
__________________
Programmers are devices used for converting caffine to code. :D
Dal is offline  
Reply With Quote
Old 07-08-2008, 06:33 PM   #7 (permalink)
Jim
The Addict
 
Jim's Avatar
 
Join Date: Nov 2007
Location: the Netherlands
Posts: 281
Thanks: 2
Jim is on a distinguished road
Default

Isnt the C main function always returning an integer?

Anyway, Welcome Dal! :)
__________________
Nunchaku! Who doesn't like martial arts? =)
Send a message via MSN to Jim Send a message via Skype™ to Jim
Jim is offline  
Reply With Quote
The Following User Says Thank You to Jim For This Useful Post:
Dal (07-08-2008)
Old 07-09-2008, 01:23 AM   #8 (permalink)
The Frequenter
Zend Certified 
 
Join Date: Sep 2007
Location: Denmark
Posts: 352
Thanks: 8
Kalle is on a distinguished road
Default

Quote:
Originally Posted by Jim View Post
Isnt the C main function always returning an integer?

Anyway, Welcome Dal! :)
Normally a C/C++ main function return an integer to identify the status code =)
__________________
Send a message via MSN to Kalle Send a message via Skype™ to Kalle
Kalle is offline  
Reply With Quote
Old 07-10-2008, 11:45 AM   #9 (permalink)
The Prestige
Advanced Programmer Top Contributor Good Samaritan 
 
sketchMedia's Avatar
 
Join Date: Oct 2007
Location: Manchester, UK
Posts: 854
Thanks: 32
sketchMedia is on a distinguished road
Default

That wont compile (wouldn't for me anyway with make/gcc, unless its some kind of visual C/C++ madness which i haven't used or wish to use), you have specified a return type of 'char' but you are returning 'int'.
Also i thought it was ISO C++ Standard to return an int and the usually wont compile until it is an int, its been a while since my last C program though :)

c++ Code:
#include <iostream>
using namespace std;
int main()
{
    cout << "Hello Dal!" <<endl;
    return (1);
}
java welcome
java Code:
public class hello
{
    static public void main(String[] argv)
    {
        System.out.println("Welcome Dal!");
    }
}
cba to write more, you get the idea.

Welcome to the community m8, you will feel right at home here.
__________________
mysql> SELECT * FROM `users` WHERE `users`.`clue` > 0;
Empty set (0.00 sec)

Last edited by sketchMedia : 07-10-2008 at 01:36 PM.
sketchMedia is offline  
Reply With Quote
Old 07-10-2008, 02:45 PM   #10 (permalink)
The Prestige
Advanced Programmer Top Contributor Good Samaritan 
 
sketchMedia's Avatar
 
Join Date: Oct 2007
Location: Manchester, UK
Posts: 854
Thanks: 32
sketchMedia is on a distinguished road
Default

ehhh that would explain it.
__________________
mysql> SELECT * FROM `users` WHERE `users`.`clue` > 0;
Empty set (0.00 sec)
sketchMedia is offline  
Reply With Quote
Old 11-17-2008, 03:44 PM   #11 (permalink)
The Prestige
Upcoming Programmer Inquisitive 
 
Tanax's Avatar
 
Join Date: Sep 2007
Location: Sweden, Stockholm
Posts: 1,080
Thanks: 115
Tanax is on a distinguished road
Default

php Code:
class Welcome
    {
       
        private $newUser;
        private $myName;
       
        public function __construct($name)
        {
           
            if(is_string($name))
            {
               
                $this->newUser = $name;
               
            }
           
            else throw new Exception('Parameter only supports string.');
           
        }
       
        public function setName($name)
        {
           
            if(is_string($name))
            {
               
                $this->myName = $name;
               
            }
           
            else throw new Exception('Parameter only supports string.');
           
        }
       
        public function getWelcome()
        {
           
            $string = 'Welcome dear ' . $this->newUser . ' to TalkPHP. Hope you enjoy the site!<br />Kind regards, ' . $this->myName;
           
            return $string;
           
        }
       
    }

PHP Code:
$msg = new Welcome('Dal');
$msg->setName('Tanax');
    
echo 
$msg->getWelcome(); 
Code:
Welcome dear Dal to TalkPHP. Hope you enjoy the site!
Kind regards, Tanax
__________________
Tanax is offline  
Reply With Quote
Old 11-18-2008, 02:44 AM   #12 (permalink)
The Addict
 
zxt3st's Avatar
 
Join Date: Apr 2008
Posts: 200
Thanks: 18
zxt3st is on a distinguished road
Default

haha, great welcome codes lol.

Welcome dal and hope you will enjoy your stay.
zxt3st is offline  
Reply With Quote
Old 10-19-2012, 10:03 AM   #13 (permalink)
The Visitor
 
Join Date: Oct 2012
Posts: 4
Thanks: 0
dymyy is on a distinguished road
Default

Hi, been a member of another programming cheap NFL Jerseys forum but came across this one. Thought Id register. I like these vBulletin systems so Im comfortable here. :)
dymyy is offline  
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT. The time now is 04:24 PM.

 
     

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Inactive Reminders By Icora Web Design