jsp vs php | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

jsp vs php

perform jsp vs php

13th Sep 2017, 6:18 PM
Moch Eko Cahyo S
Moch Eko Cahyo S - avatar
2 Answers
0
JSP is an abstraction of Servlets, which is based on the Java programming language. The JSP tags start with ‘<%’ and end with ‘%>’. It uses the Java programming language as a base. The extension of the JSP file is .jsp. Since it is based on Java, it has built-in support for garbage collection We can easily debug the JSP code It is more secure than PHP. It supports a rich set of libraries. PHP is a server-side scripting language designed for web development. The php tags start with ‘<?php’ and end with ‘ ?>’. It uses a scripting language that is similar to C. The extension of the PHP file is .php. It does not support garbage collection. Debugging PHP code is a little complex It has some security concerns. It supports fewer libraries than JSP. PHP is comparatively faster than JSP
28th Jul 2023, 9:48 AM
Sangeetha Santhiralingam
Sangeetha Santhiralingam - avatar