Category: Server Side Programming
10 posts
How to Send Realtime Notifications if User Follow using PHP & Mysql
Hello there, in this tutorial we will learn how to send real-time notifications to a user when someone follows them, you can use a combination of PHP and MySQL along with a WebSocket connection. Here ... Read Mores
Prathmesh Yelne
17-Mar-2023 21:31:15
Add and Delete Images from the Server in TinyMCE editor using PHP
Hello there, In this tutorial we will learn how to add and delete images from the server using TinyMCE editor callback and AJAX code, you can use the following steps:
Step 1: Create a PHP script on y... Read Mores
Prathmesh Yelne
02-Apr-2023 15:05:07
September 11, 2020
2.2 K Views
GCP Cloud Engineer
21 hours ago
What is the difference between echo, print, and print_r in PHP?
echo: echo is not a function rather it is described as a language construct. It accepts an list of argument (multiple arguments can be passed) and returns no value or returns void. It cannot be used a... Read Mores
Prathmesh Yelne
30-Jan-2023 19:33:01
How to echo HTML in PHP ?
While making a web application with PHP, we often need to print or echo few results in form of HTML. We can do this task in many different ways. Some of methods are described here:1. Using echo or pri... Read Mores
Prathmesh Yelne
29-Jan-2023 13:18:02
September 11, 2020
2.2 K Views
GCP Cloud Engineer
21 hours ago
PHP Date and Time Function
In this tutorial, we will see how to get the date & time using the date() & time() function in PHP, we will also see the various formatting options available with these functions & underst... Read Mores
Prathmesh Yelne
26-Jan-2023 14:42:35
What does ‘<?=’ Short Open Tag Mean in PHP ?
PHP, a powerful server-side scripting language, offers various features to enhance developer productivity. One of these features is the ‘<?=’ short open tag, which provides a convenient shorth... Read Mores
Prathmesh Yelne
29-Mar-2024 0:08:15
September 11, 2020
2.2 K Views
GCP Cloud Engineer
21 hours ago
See (stage) your website before switching your DNS
When customers are looking to switch hosting providers, they usually stage the setup of their web site before completely switching the DNS (domain name servers). We provide you with a temporary URL so... Read Mores
Vedanti
01-Nov-2021 9:06:42
How can we create recursive functions in Python?
Recursion is a programming method, in which a function calls itself one or more times in its body. Usually, it is returning the return value of this function call. If a function definition follows rec... Read Mores
Vedanti
30-Oct-2021 14:38:44
September 11, 2020
2.2 K Views
GCP Cloud Engineer
21 hours ago
How to make a chain of function decorators in Python?
Decorators are “wrappers”, which allow us to execute code before and after the function they decorate without modifying the function itself.
Example
The given code can be wrapped in a chain of d... Read Mores
Codegyan
30-Jan-2023 19:39:21
What are Python function attributes?
Everything in Python is an object, and almost everything has attributes and methods. In python, functions too are objects. So they have attributes like other objects. All functions have a built-in att... Read Mores
Codegyan
03-Oct-2021 13:29:18
September 11, 2020
2.2 K Views
GCP Cloud Engineer
21 hours ago