PHP development

Thread Starter

tojeena

Joined May 2, 2009
118
hi,

I have developed a php program using php designer.Could anyone please tell me how to make it into a web page.:confused:
 

Black-Bird

Joined Jan 26, 2011
23
I think this is the wrong forum for you buddy ? this is an electronics website not a web development website ?

but you can always use Google to help you
 

GetDeviceInfo

Joined Jun 7, 2009
2,273
I have developed a php program using php designer.Could anyone please tell me how to make it into a web page
PHP is a server side script, so needs to reside on a server. HTML on the other hand is client side, and really only displays, so if you want to display your php program, you wrap it with HTML tags and serve it from the server upon an HTTP request. If you want your PHP script to serve a unique webpage, you'll need to program it to 'serve' your HTML tagged data on the HTTP request.
 
Top