Web Programming – II (PHP) | Short Question Answer What is PHP? PHP stands for Hypertext Pre-processor. PHP is a server side scripting language and scripts are executed on server that is used to develop Static websites or Dynamic websites or Web applications. Syntax: <?php // PHP code goes here ?> List out the advantage of using PHP PHP […]
Web Programming II – TU Solution – 2019 (Makeup)
TU Solution- BIM- 2019 (Makeup) 11. Write a PHP program to create a form that contains two textboxes which accepts numbers and a submit button. When submit button is clicked, sum of two numbers will be displayed. <!doctype html> <html> <head> <title>Year : 2019 (Makeup) | Q : 11</title> </head> <body> <?php if(isset($_POST[‘add’])) { $n1 […]

