TalkPHP
 
 
Account Login
Latest Articles
» How to keep your forms from double posting data
» cURL Basics
» Securing your PHP applications Part 1
» The way the function rolls
» Database Abstraction with Zend_Db - Part 2
Advertisement
Associates
Associates
techtuts Darkmindz
CSS Tutorials Tutorialsphere.com - Free Online Tutorials
Boston PHP SurfnLearn
Reply
 
LinkBack Thread Tools 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 Addict
Zend Certified 
 
Join Date: Sep 2007
Location: Denmark
Posts: 234
Thanks: 5
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)
The Addict
 
codefreek's Avatar
 
Join Date: Sep 2007
Location: Near you.
Posts: 283
Thanks: 166
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.
__________________
inquisitive
1. Eager to acquire knowledge.
2. Too curious; overly interested; nosy.
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
Location: On your Hard Drive, hiding like a Virus
Posts: 782
Thanks: 154
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! :]
__________________
Wax on, Wax off

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, 06:33 PM   #6 (permalink)
Jim
The Addict
 
Jim's Avatar
 
Join Date: Nov 2007
Location: the Netherlands
Posts: 221
Thanks: 2
Jim is on a distinguished road
Default

Isnt the C main function always returning an integer?

Anyway, Welcome Dal! :)
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-08-2008, 11:33 PM   #7 (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-09-2008, 01:23 AM   #8 (permalink)
The Addict
Zend Certified 
 
Join Date: Sep 2007
Location: Denmark
Posts: 234
Thanks: 5
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 Frequenter
Advanced Programmer Top Contributor Good Samaritan 
 
Join Date: Oct 2007
Location: Manchester, UK
Posts: 424
Thanks: 22
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.
__________________

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 Frequenter
Advanced Programmer Top Contributor Good Samaritan 
 
Join Date: Oct 2007
Location: Manchester, UK
Posts: 424
Thanks: 22
sketchMedia is on a distinguished road
Default

ehhh that would explain it.
__________________
sketchMedia is offline  
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
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 05:04 PM.

 
     

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0