Vishal Barot

Hi there, Vishal Barot here. Full-time web developer and graphic designer with over 10 years of experience. I've been experimenting with web development since I was 17 years old. If you are looking to have a professional website or design then I can develop it for you. Looking forward to working with you.

Create your first PHP-enabled page

Hello, Today I will explain how you can create your first php enabled page. A PHP script starts with  <?php and ends with ?>  First of all open any text editor(notepad++) create a file name index.php and put it in your web server’s root OR /www OR puclic_html directory with the following content. <html><head><title>Homepage</title></head>  <?php echo ‘Hello World’; ?> 

Create your first PHP-enabled page Read More »