Writing the First Script in PHP- Introduction to Scripts
Creating scripts in PHP is very simple. We just have to open the text editor and write the code. The code file must be saved in .htdocs file with the extension .php. Consider the following code for example: Let us say you save the file with the name: hello.php < ?php echo “Hello, world!”; ? view …
Writing the First Script in PHP- Introduction to Scripts Read More »