Can you tell me how this is created?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
AlexKuhle
Forum Newbie
Posts: 6
Joined: Fri Mar 23, 2012 6:55 am

Can you tell me how this is created?

Post by AlexKuhle »

Hello everyone once again :-)

I know i might be asking stupid questions, but i am really studying hard with my books / guides on the internet, regarding scripts, and how PHP, HTML, Java ect is created.

I have a question tho, i would like to know how this "window" is created, and how.

http://mobilhimlen.dk/123/

If you take a look at this page, you can see in the left hand side, there is something in the buttom called "Åben chatten", but since alot of people are from other countries than Denmark, you can see the first letter, so it might be called something else, but if you click on that specific link "Åben chatten", you will be directed to a new window, and in this window you have a background from a chat, where you can login ect.

I would love to know, how this window is created? I mean, when someone visits my website, he can press "Open chat" and this window pops up, and you can login from there ect.

If my post made NO SENSE, please let me know!

Regards Alex.
User avatar
Celauran
Moderator
Posts: 6427
Joined: Tue Nov 09, 2010 2:39 pm
Location: Montreal, Canada

Re: Can you tell me how this is created?

Post by Celauran »

Code: Select all

<a href="javascript:void(window.open('start.php','frameset','width=790,height=455,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no'))">Åben chatten</a>
It's just Javascript window.open

That's not being displayed quite right. That's javascript : void etc.
AlexKuhle
Forum Newbie
Posts: 6
Joined: Fri Mar 23, 2012 6:55 am

Re: Can you tell me how this is created?

Post by AlexKuhle »

Is that hard to make? Or can i find a template / script somewhere near here?

Thanks for your answer tho!

I can see from the chat, you are right, it is not displayed quite right :-/
Post Reply