How can I create a simple webpage using php? | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grátis
0

How can I create a simple webpage using php?

3rd Aug 2016, 2:06 PM
jishnu v nair
6 Respostas
+ 1
not just by php.. you will need to know the basics of CSS and HTML for making a decent webpage or website.. A database server is also needed for the back end to store your data that you enter in the webpage
29th Aug 2016, 6:37 PM
Gitartha
Gitartha - avatar
0
Far from that. HTML and css for styling, is made for that. PHP is made to bring dynamic input/output into your page. But its not made bring up a page in general
3rd Aug 2016, 10:21 PM
Steven
Steven - avatar
0
You need to use html, css, php and even jsp to create a working webpage.
5th Aug 2016, 5:06 PM
Sumitabha Banerjee
Sumitabha Banerjee - avatar
0
But you can create a simple one like printing Welcome + somename or print a person's details after taking login credentials and validating them.
5th Aug 2016, 5:08 PM
Sumitabha Banerjee
Sumitabha Banerjee - avatar
0
<%php //your PHP code $test="test word"; %> <html> <title></title> <head> //put css or js on here </head> <body> <?php echo $test;?> </body> </html>
18th Oct 2016, 3:39 PM
JERRY WEI
JERRY WEI - avatar
0
you can create a webpage with php alone. You need to gain mastery in HTML5, css, Js.. Then you can create a webpage.
22nd Oct 2016, 5:09 PM
Ugwah chukwuemeka Emmanuel
Ugwah chukwuemeka Emmanuel - avatar