During developing a web project, we always need FTP Clients(FileZila, WinSCP, SmartFTP etc.) to send or upload files to a server via FTP. However, if you are PHP developer, you can easily create your own FTP script to sending files from one server to another server. The PHP provides ftp_put function to upload a file to […]
Tutorials
Insert content at cursor position in tinyMCE editor
Recently I had a requirement to add text and images at the cursor position in tiny editor. Actually I had to implement multiple images attachment with “add to post” button with each uploaded images and when user clicked the button “add to post”, the image will be get inserted at cursor position in tinyMCE editor.
How to Customize TinyMCE Editor?
TinyMCE is a open-source web based JavaScript HTML WYSIWYG editor, which allows users to add custom HTML and CSS without having to remember any code. You can simply select the element or text and apply the relevant format using the style drop-down, font drop-down, font size available in the visual editor.
Overloading and Overriding in PHP with Examples
Overloading and Overriding are forms of Polymorphism in OOP. According to Object Oriented Programming (OOP) concept if a class has methods of the same name but different parameters then we say that we are overloading that method. Also if we were to create a method in the child class having the same name, same number […]
How to Use Hooks in WordPress?
In our previous tutorial, we have published PHP Code Snippets. In this post, we have published about Hooks in WordPress. If your are in WordPress development, then you can not ignore the importance of hooks. Suppose you want to add some functionality to your WordPress project, then you will need to edit some core functionality […]