Showing posts with label PHP. Show all posts
Showing posts with label PHP. Show all posts

Saturday, February 15, 2020

Download Source Code Pembayaran SPP Berbasis PHP



Hallo agan agan , disini saya akan membagikan source code pembayaran SPP dengan menggunakan bahasa pemograman PHP 

Fitur di aplikasi web ini cukup lengkap dari mulai

- Data transaksi masuk
- Data Siswa
- Data Jenis Pembayaran
- Pembayaran Tagihan


Dan masih banyak lagi fitur lain nya 

Agan bisa lihat info yang lebih detail lagi disini


Untuk demo nya , agan bisa langsung kunjungi web ini 

http://abdul.officials10.com/spp/index.php
username : admin
Password : admin

Untuk download source codenya agan bisa unduh lewat link dibawah ini :

Download Source Code

Thursday, December 26, 2019

Download Script PHP Jual Beli Mirip OLX


Hallo guys balik lagi di blog ini , kali ini saya mau bagikan script php olx clone 

Oiya , script ini tanpa database mysql loh

Gapercaya ? yaudah..

Script ini terintegrasi dengan layanan Back4app.com

jadi kalian harus buat REST Api nya dulu di situs back4app.com

Tanpa basa basi 

Langsung aja download disini


Mediafire :Download

Untuk instalasi kalian cukup ekstra script nya ke hostingan kalian

Lalu ubah konfigurasinya di bagian 
Configuration.php

Saturday, December 21, 2019

Download Script PHP Resep Makanan + Admin Panel Gratis

DEMO

Website Demo linkhttp://elmanawy.info/demo/gusto
Admin Panel Demo linkhttp://elmanawy.info/demo/gusto/admin
Login Details for regular member / admin :
Email: admin@admin.com
Password: 123456

FEATURES

  • Security
    • Totally secured system (SQL injection, XSS, CSRF)
    • Built on powerful CodeIgniter Framework that has been tried and tested by millions of developers.
    • Passwords are encrypted using PHPass library to make sure your data is safe.
  • User & Registration System
    • Users can register for an account using the quick and easy register Popup.
    • Login System comes with a Forgotten Password, to allow users to reset their password via email.
  • Recipe Builder
    • Members / Admin add unlimited recipes.
    • Add recipe category, descriptions, Ingredients , video, unlimited multi upload images, featured image, cooking time, people serves, and more …..
    • SEO optimized for recipes using meta keywords and meta tags.
    • Allow anyone to share recipe on social media (Facebook, twitter, google+, ..)
    • Comments and react on it using Disqus.
  • Members
    • Any register user can login/ forget password.
    • Having awesome profile include member information and his recipes.
    • Mange or update his information in profile settings (country, name, username, gender, user profile, ...).
    • CRUD (Create, Read, Update, Delete) recipe with more details(featured image, multi upload unlimited images for recipes, description, video,Ingredients, an more amazing details.. ).
    • Comment on other user recipes.
    • Search on website with category or recipe name.
    • Share recipe on social media (Facebook, twitter, google+, ..).
    • See other other members profile.
    • Can follow the new recipes added by register on website subscribe form.
    • Read, share, and comment (with facebook plugin) on blog posts.
    • Contact with support using contact form and contact information.
  • Admin Panel
    • Flexible control panel system with full options.
    • Only admin role can login admin panel.
    • Change website settings(name, logo, favicon, timezone, site description,...).
    • Change website SEO settings (meta keywords, meta description).
    • Change Contact information (email, phone,...).
    • Unlimited slides images related to the recipe.
    • Change social media pages.
    • Manage Members (Edit, Delete, Add and view member information) and change their member role (Regular member, admin).
    • Manage recipe categories (add, edit, delete, view).
    • Mange recipes (Add, Edit, Delete, and approve member recipe).
    • Approve member recipes to appear on website.
    • Can able/ disable recipe appearing.
    • Mange topics (add, edit, delete, view).
    • Admin can set topics as public/private/registered users.
    • Manage ADS and select its location dynamically otherwise google ads or custom ads images on website.
    • Can view/ delete users subscribed.
    • Manage sliders that appears on website (add, edit, delete, view).
    • Totally with this admin panel can manage and control every thing appear in website with full option.
    • Google Anaytics tracking.
    • Google Recaptcha.
    • Admin can view/delete/export newsletters emails.
  • Trendy website interface included.
    • Home page with
      • Dynamic slider images.
      • Widgets for popular recipes, popular authors, counter of pages of social media and simple search
      • latest recipes added
      • Ajax Subscribe form
    • Single page for recipes category included its category and advanced search.
    • Single awesome page for recipes included plethora details.
    • User Profile included all details about author and his recipes.
    • Tips and tricks page include admin posts
    • single page for trip and trick.
    • Contact form with recaptcha to make your client reach you easily.
    • Login/ register/ forget password modal.
    • Amazing Dashboard for register user include setting page, user recipes and page for managing recipe.
  • Other Features
    • Easy to install and usability(without any coding knowledge needed).
    • Awesome Design for Website and admin panel
    • Fully Responsive for Website and admin panel
    • Clean Code with hight performance.
    • Easy Customization
    • Friendly with SEO.
    • High performance.
    • More features will coming up.

SYSTEM

  • Backend Framework: Built on CodeIgniter
  • Frontend Framework: Built on Bootstrap
  • Requires PHP 5.6+
  • Supports MySQL, Mysqli.
  • Supports SMTP Email, PHP Mail()

REQUIREMENTS

  1. Code Editing Software (eg: Dreamweaver, Sublime Text or Notepad
  2. Web Browser for testing (eg: Google Chrome or Mozilla Firefox)
  3. FTP Tool to upload files to Server (eg: FileZilla).
  4. Read documentation carefully to guide you how to install application

Download


MediaFire : Download

    Wednesday, November 27, 2019

    [PHP] Script Facebook Page Scraper | Scrap Public Post Facebook




    dalam script ini , lu sekalian bisa scrap postingan fanspage yang ber privasi publik

    
    
    function fbPageScraper( $page_name = '' )  {
        $post_url = "https://www.facebook.com/pg/{$page_name}/posts";
        
        $ch = curl_init($post_url);
        curl_setopt($ch, CURLOPT_POST, false);
        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
        curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.12) Gecko/20050915 Firefox/1.0.7");
        curl_setopt($ch, CURLOPT_HEADER, false);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        $contents = curl_exec($ch);
        
        $doc = new DOMDocument();
        $doc->loadHTML($contents);
        $xpath = new DOMXPath($doc);
        $query = "//div[@data-testid='post_message']";
        $entries = $xpath->query($query);
        
        $posts = array();
        foreach ($entries as $entry) {
            $innerHTML = '';
            if ($entry->getElementsByTagName('p')->length) {
                foreach ($entry->getElementsByTagName('p') as $child) {
                    $innerHTML .= $child->ownerDocument->saveXML($child);
                }
            }
        
            $images = array();
            if ($entry->nextSibling && $entry->nextSibling->getElementsByTagName('img')->length) {
                foreach ($entry->nextSibling->getElementsByTagName('img') as $image) {
                    $images[] = $image->getAttribute('src');
                }
            }
        
            $href = array();
            if ($entry->nextSibling && $entry->nextSibling->getElementsByTagName('a')->length) {
                foreach ($entry->nextSibling->getElementsByTagName('a') as $anchor) {
                    if (strpos($anchor->getAttribute('href'), 'https://l.facebook.com') === false) {
                        $href[] = 'https://www.facebook.com' . $anchor->getAttribute('href');
                    } else {
                        $href[] = $anchor->getAttribute('href');
                    }
        
                }
            }
        
            $posts[] = array(
                'content' => $innerHTML,
                'images' => count($images) ? $images[0] : '',
                'href' => count($href) ? $href[0] : '',
            );
        }
    
        return $posts;
    }
    

    [ Share ] Tool Adsense Checker , Cek Domain Di Suspend Adsense Atau Tidak



    hallo agan agan sekalian , disini kembali lagi dengan abdul
    ane pengen ngebagiin sebuah tool yang bisa dibilang lumayan keren mungkin
    wkwk
    nama tool nya adsense suspend checker
    jadi tool nya akan ngr cek apakah situs yang di cek itu iklan nya tersuspend adsense atau tidak
    so langsung cek aja kali ya

    Cek tool nya disini
    Adsense Checker

    Ads 970x90