Ajay_Kumar
Ajay_Kumar

Reputation: 1387

Website supporting for mobile phone in php

I want to make a website which should open in mobile perfectly. I went through more search and i got WML language based website. Is this not possible to make any website in concerns of design with mobile.Can WML run on php server as well ?

Need advice how to make a website for mobile application ?

Upvotes: 0

Views: 941

Answers (4)

texai
texai

Reputation: 3736

For cross-browser experience take care about you [X]HTML, CSS, javascript. Doesn't matter what server side language you've used.

Upvotes: 0

JohnP
JohnP

Reputation: 50019

The browser (mobile or desktop) doesn't care what the server language that is used to server the page is. When designing for mobile, you have to keep in mind the small screen sizes and the sometimes limited browser capabilities.

So your CSS and your markup needs to fit the most common denominator you are aiming for. Just keep it simple.

Have a look at this for more info : http://articles.sitepoint.com/article/designing-for-mobile-web

Upvotes: 0

Dolan Antenucci
Dolan Antenucci

Reputation: 15942

The majority of mobile phones fully support HTML. You should consider building your mobile site in regular HTML, but build it in a one column layout (often suggested with mobile UI design -- e.g. scroll up and down, but avoid left and right scrolling). Make sure your images are reasonably sized, although most phones will scale the content accordingly.

Unless you are targeting a 3rd world country that has old school phone browsers, go with HTML.

Upvotes: 1

Related Questions