Skip to main content

Posts

php function

PHP provide function to execute code, compile as well as generate output as per your requiment Following function is use for daily software development  : 1-ucfirst() 2-ucwords() 3-substr() 4-is_numeric() 5-number_format() 6-rand() 7-round() 8-pi() 9-tan() 10-sin() 11- date() 12-strip_tags() 13-array_rotate() 14-array_diff() 15-print_r() 16-echo() 17-is_object() 18-is_array() 19-in_array() 20-array_chunk() 21-array_reverse() above function is used for any string as well as array operation if you have any query reply on below mail id : disuzajen@gmail.com

Simple and Free SEO Tools to Instantly Improve Your website ranking

Tracing the history of SEO is kind of like trying to trace the history. SEO is fairly young, and changes frequently. Quite appropriately, it appears to be a millennial -- its birth is predicted to fall somewhere around 1991. Search Engine Optimisation (SEO) in 2019 is a technical, analytical and creative process to improve the visibility of a website in search engines. When it comes to search engine optimization for a new website, some businesses can be intimidated due to the amount of information out there. SEO tips to improve your organic rankings. 1. Master Keyword Research 2. Understand Your Competition 3. Optimize Your Site 4. Produce Regular Content 5. Build Your Social Media Network 6. Understand Google Analytics Title Tag Page URL Include one primary keyword in a page URL. Use hyphens (-) instead of underscores (_) in URLs. hoose a static URL address instead of a dynamic one. Keep a URL address brief, descriptive and relevant. Title-tag, meta-descr...

Amazon S3 File Upload Using PHP

What is Amazon S3? Amazon Simple Storage Service (Amazon S3), S3 stands for “Simple Storage Service”, is an amazon service which provides us a highly scalable, durable and secure storage. It is easy and simple to use with a simple web service interface. We can store and retrieve our data from anywhere and anytime on the web. It makes buckets for us so we can store our data in our buckets. Amazon S3 is an ideal option that reduces file load time and bandwidth usage. We know that uploading function is the sensitive part in any web project, a little bit mistake will allow hackers to upload the malicious files. Amazon S3 will provide you the safe side. Learn more at http://aws.amazon.com/s3/. Benefits of Cloud Object Storage Storing data on an AWS Cloud object storage service delivers advantages in three key areas: 1. Durability, Availability, & Scalability. 2. Security & Compliance. 3. Flexible Management. 4. Query-in-Place. 5. Broadest Ecosystem. best video...

MySql Trigger set

Free Teachnology provide free #PHP,#MySql,#Javascript,#jQuery,#API integration,#Payment gateway integration,#Social Media login In this section, you will learn how to work with the MySQL triggers. By definition, a trigger or database trigger is a stored program executed automatically to respond to a specific event e.g.,  insert, update or delete occurred in a table. The MySQL trigger is a database object that is associated with a table. It will be activated when a defined action is executed for the table. The trigger can be executed when you run one of the following MySQL statements on the table: INSERT, UPDATE and DELETE and it can be invoked before or after the event. Uses for triggers: Enforce business rules Validate input data Generate a unique value for a newly-inserted row in a different file. Write to other files for audit trail purposes Query from other files for cross-referencing purposes Following table of create trigger : 1-Create table : when create ...

FCM Notification in android and IOS App

Free Teachnology provide free #PHP,#MySql,#Javascript,#jQuery,#API integration,#Payment gateway integration,#Social Media login Firebase Cloud Messaging Firebase Cloud Messaging (FCM) is a cross-platform messaging solution that lets you reliably deliver messages at no cost. Using FCM, you can notify a client app that new email or other data is available to sync. You can send notification messages to drive user re-engagement and retention. For use cases such as instant messaging, a message can transfer a payload of up to 4KB to a client app IOS Setup link : https://firebase.google.com/docs/cloud-messaging/ios/client Andriod Link : https://firebase.google.com/docs/cloud-messaging/android/client Web Link : https://firebase.google.com/docs/cloud-messaging/js/client How does it work? Firebase Cloud Messaging architecture diagram An FCM implementation includes two main components for sending and receiving: A trusted environment such as Cloud Functions for Firebase ...

Boostrap Datepickter start date and end date range set

Free Teachnology provide free #PHP,#MySql,#Javascript,#jQuery,#API integration,#Payment gateway integration,#Social Media login Originally created for reports at Improvely, the Date Range Picker can be attached to any webpage element to pop up two calendars for selecting dates, times, or predefined ranges like "Last 30 Days". Getting Started To get started, include jQuery, Moment.js and Date Range Picker's files in your webpage: <script type="text/javascript" src="https://cdn.jsdelivr.net/jquery/latest/jquery.min.js"></script> <script type="text/javascript" src="https://cdn.jsdelivr.net/momentjs/latest/moment.min.js"></script> <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/daterangepicker/daterangepicker.min.js"></script> <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/daterangepicker/daterangepi...

Create notification,store and retrive a particular user.

Notification Data table is: as per user defined functionality , user want notification as per particular any user send. if you want particular notification please follow following database structure : Normally we can use following data table structure INNODB database use because mostly common used that, its very fast loading and primary and forgen key assign. Free Teachnology provide free php tutorial as well as MySql,javascript,jquery knowlege : above image show that basic notification table structure pk_id is primary key of notification table , fk_uid is forgin key of user table of particular user primary key, Following code is create notification table : -- phpMyAdmin SQL Dump -- version 4.5.2 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Jun 07, 2018 at 12:16 PM -- Server version: 10.1.13-MariaDB -- PHP Version: 5.6.20 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; -- -- Database: `makeathome` -- -...