August 2013 ~ PinoySourceCode

Friday, August 30, 2013

Advance pagination using only php

Title: Advance pagination using only php
Language: php
File size: 20kb
Tags: PHP

Advance pagination help you to save the area of your page and to avoid scrolling the browser. If yo have a lot of content much better to use this pagination.

If you want to try it to your self you can download the full code by clicking the download below.


System Requirement to run PHP:
  • Xampp server or Wamp server to download this software click here.
  • Any Browser Google chrome,Firefox,Opera,Safari.. etc.
  • Php editor you can user Dreameaver,Notepad,Wordpad if you are using mac you can use textmate, or other compatible with your computer,for me i recommend Dreamweaver to easily fix the error if they have.
This is the simple way to run this program.
  • First Download the files here.
  • Next Extract the zip files to htdoc this is the path of htdocs(C://xampp/htdocs) 
  • Now go to localhost/phpmyadmin and click TAB import->browse the sql file sql file attached with the folder anf Click Go
  • Now go to your browser and follow this path(localhost/foldername/filename.php)
Note:Make sure that you complete requirements above.

Click here to Download!

    Read More

    Input validation in php

    Title: Input validation
    Language: php
    File size: 10kb
    Tags: PHP

    Input validation in php very useful for the beginners who studied web development with ph.This is very useful if you are creating login page for youw website or you can use this code to create registration form you can trap all the requireds if you are using this one.

    If you want to try it to your self you can download the full code by clicking the download below.

    System requirements to run php:
    • Xampp server or Wamp server to download this software click here.
    • Any Browser Google chrome,Firefox,Opera,Safari.. etc.
    • Php editor you can user Dreameaver,Notepad,Wordpad if you are using mac you can use textmate, or other compatible with your computer,for me i recommend Dreamweaver to easily fix the error if they have.
    This is the simple way to run this program.
    • First Download the files here.
    • Next Extract the zip files to htdoc this is the path of htdocs(C://xampp/htdocs) 
    • Now go to your browser and follow this path(localhost/foldername/filename.php)
    Note:Make sure that you complete requirements above.

    Click here to Download!

      Read More

      Search from array using php

      Title: Search from array using php
      Language: php
      File size: 1kb
      Tags: PHP

      This example Search value inside the array in php is very understandable program.The use of this code is to searh the value inside the array.

      This array stores multiple values in one single variable.and this array type is Associative arrays.

      If you want to try it to your self you can download the full code by clicking the download below.

      System requirements to run php:
      • Xampp server or Wamp server to download this software click here.
      • Any Browser Google chrome,Firefox,Opera,Safari.. etc.
      • Php editor you can user Dreameaver,Notepad,Wordpad if you are using mac you can use textmate, or other compatible with your computer,for me i recommend Dreamweaver to easily fix the error if they have.
      This is the simple way to run this program.
      • First Download the files here.
      • Next Extract the zip files to htdoc this is the path of htdocs(C://xampp/htdocs) 
      • Now go to your browser and follow this path(localhost/foldername/filename.php)
      Note:Make sure that you complete requirements above.

      Click here to Download!

        Read More

        Search value inside the array in php

        Title: Search value inside the array in php
        Language: php
        File size: 1kb
        Tags: PHP


        This example Search value inside the array in php is very understandable program.The use of this code is to searh the value inside the array.

        This array stores multiple values in one single variable.and this array type is Associative arrays.

        This is the sample code:
        <?php
        if(isset($_POST['submit']))
        {
        $found='no';
        $data=array(23,24,25,26,27);
        $num=$_POST['num'];
        foreach($data as $value)
        {
        if($value==$num)
        {
        $found='yes';
        break;
        }
        }
        if($found=='yes')
        echo "<script>alert('Value Found')</script>";
        else
        echo "<script>alert('Value not Found')</script>";
        }
        ?>
        If you want to try it to your self you can download the full code by clicking the download below.

        System requirements to run php:
        • Xampp server or Wamp server to download this software click here.
        • Any Browser Google chrome,Firefox,Opera,Safari.. etc.
        • Php editor you can user Dreameaver,Notepad,Wordpad if you are using mac you can use textmate, or other compatible with your computer,for me i recommend Dreamweaver to easily fix the error if they have.
        This is the simple how to run this program.
        • First Download the files here.
        • Next Extract the zip files to htdoc this is the path of htdocs(C://xampp/htdocs) 
        • Now go to your browser and follow this path(localhost/foldername/filename.php)

        Click here to Download!

          Read More

          Simple Array example in PHP


          Title: Simple Array example in PHP
          Language: php
          File size: 1kb
          Tags: PHP





          This is very simple tutorial in php on how to create array. This array stores multiple values in one single variable.and this array type is Associative arrays.


          System requirements to run php:

          • Xampp server or Wamp server to download this software click here.
          • Any Browser Google chrome,Firefox,Opera,Safari.. etc.
          • Php editor you can user Dreameaver,Notepad,Wordpad if you are using mac you can use textmate, or other compatible with your computer,for me i recommend Dreamweaver so that you can find easily the error.
          This is the simple how to run this program.
          • First Download the files here.
          • Next Extract the zip files to htdoc this is the path of htdocs(C://xampp/htdocs) 
          • Now go to your browser and follow this path(localhost/foldername/filename.php)

          Click here to Download!

          Read More

          Wednesday, August 28, 2013

          Monday, August 26, 2013

          Payroll online system

          Title:Payroll online system
          Language: HTML/CSS/PHP
          File size: 233KB
          File name: viewandedit.zip
          Tags:PHP/Bootstrap/





          Online Payroll System using PHP/MySQL.
          This program allows ADMIN to ADD employee/ADD Entry/DELETE Records/
          And the employees allows to visit the records and PRINT the records..For more info just visit

          jadesign.net16.net
          Employee number:1290100
          Admin:username:admin
          password:admin
          if you incountered a password during extracting files..input this password: 1111111111
          hope it works guys!!:)
          thank you
          software require:
          Xampp OR wamp
          php editor like notepad++
          or visit jadesign.net16.net
          or email me: langajade@gmail.com

          System Requirements: 
            -Xampp 1.7.3 or below
            -Chrome,Firefox,Opera

          How to Install?
           -Download the following files clicking download below 
           -Extract the zip files to htdocs(this is the path: C://xampp/htdocs 
          Create Database
           -Go to your browser ans type localhost/phpmyadmin
           -Click Tab Import and Browse the SQL file

          After creating database the system is ready to run just type localhost/foldername
          CLICK HERE TO DOWNLOAD



          Read More

          Sunday, August 4, 2013

          View and Edit records using php

          Title:View and Edit records using php
          Language: HTML/CSS/PHP
          File size: 233KB
          File name: viewandedit.zip
          Tags:PHP/Bootstrap/





          View and Edit records using phpa basic tutorial on how to Insert record to database and edit records.

          Features:
           - Inserting data to databse
           -Selecting data to database
           -Update data to database

          System Requirements:
            -Xampp 1.7.3 or below
            -Chrome,Firefox,Opera

          How to Install?
           -Download the following files clicking download below
           -Extract the zip files to htdocs(this is the path: C://xampp/htdocs
          Create Database
           -Go to your browser ans type localhost/phpmyadmin
           -Click Tab Import and Browse the SQL file

          After creating database the system is ready to run just type localhost/foldername

          CLICK HERE TO DOWNLOAD

          Read More

          Horizontal menu with twitter bootstrap


          Title:Horizontal menu with twitter bootstrap
          Language: HTML/CSS?AJAX/
          File size: 1KB
          File name: search.zip
          Tags:PHP/Bootstrap/


          Horizontal menu with twitter bootstrap a perfect menu using twitter bootstrap .

          System Requirements:
            -Xampp 1.7.3 or below
            -Chrome,Firefox,Opera

          How to Install?
           -Download the following files clicking download below


           -Extract the zip files to htdocs(this is the path: C://xampp/htdocs


          Download the files here


          Read More

          Saturday, August 3, 2013

          Dropdown login using twitter bootstrap

          Title: Dropdown login using twitter bootstrap
          Language: Javascript
          File size: 122.87KB
          File name: dropdownlogin.zip
          Tags:Ajax/bootstrap








          Dropdown login using twitter bootstrap very easy to create design using twitter bootstrap the CSS framework
           

          System Requirements:
            -Chrome,Firefox,Opera,IE

          How to Install?
           -Download the following files by clicking download below


           -Extract the zip files to htdocs(this is the path: C://xampp/htdocs)

          Create Database
           
          -No database needed.

              Just download and run

           Click here to download

           

          Read More

          Like and Unlike

          Title: Like and Unlike
          Language: PHP
          File size: 1KB
          File name: likeandunlike.zip
          Tags:PHP/Ajax/




          Like and Unlike sourcecode.

          System Requirements:
            -Xampp 1.7.3 or below
            -Chrome,Firefox,Opera

          How to Install?
           -Download the following files by clicking download below


           -Extract the zip files to htdocs(this is the path: C://xampp/htdocs)

          Create Database
           -Go to your browser ans type localhost/phpmyadmin

           -Database name
           -Click Tab Import and Browse the sql file

           Click here to download   

           

          Read More

          Slide Show Images using Javascript

          Title: Slide Show Images using Javascript
          Language: Javascript
          File size: 301.26KB
          File name: slideshow.zip
          Tags:





          Slide Show Images using Javascript
           

          System Requirements:
            -Chrome,Firefox,Opera

          How to Install?
           -Download the following files by clicking download below


           -Extract the zip files to htdocs(this is the path:C:\\xampp\htdocs

          Create Database
           
          -No database needed.

           Click here to download  

           



          Read More

          Get updates

          Twitter Facebook Google Plus LinkedIn RSS Feed Email

          Get Free Updates in Your Email


          Enter your email address:

          Popular Posts