i need to write a function/code to open websites in different resolutions in PHP.
Assume following are the 2 radio buttons:
800x600 Pixels
1024x768 Pixels
If the user chooses the first resolution,the website should open in that resolution.
Similarly if the user chooses the second resolution,the website should open in that resolution.
Thanks for any coding help
Opening websites in different resolutions
Moderator: General Moderators
Re: Opening websites in different resolutions
What do you mean "website should open in that resolution"? Is it window size? or something else.
- aceconcepts
- DevNet Resident
- Posts: 1424
- Joined: Mon Feb 06, 2006 11:26 am
- Location: London
Re: Opening websites in different resolutions
Surely this would be a CSS task - if you're looking to cater for various resolutions.
Re: Opening websites in different resolutions
I make it more clear here.
I meant website should open in that window size.How do i do that through php coding?
Thanks
I meant website should open in that window size.How do i do that through php coding?
Thanks
- aceconcepts
- DevNet Resident
- Posts: 1424
- Joined: Mon Feb 06, 2006 11:26 am
- Location: London
Re: Opening websites in different resolutions
I thought as much
Take a look at some CSS. i.e.
etc...
Take a look at some CSS. i.e.
Code: Select all
<div style="width:800px; height:600px;">CONTENT</div>