Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

zekena / Unit-calculator

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • Unit-calculator
  • login
  • ajaxjs.php
Find file
BlameHistoryPermalink
  • zekena's avatar
    FInal · ec0c4c73
    zekena committed 6 years ago
    ec0c4c73
ajaxjs.php 184 Bytes
1 2 3 4 5 6 7 8 9
<?php
  $from_value = $_POST['from_value'];
  $from_unit = $_POST['from_unit'];
  $to_unit = $_POST['to_unit'];
  if (is_numeric(($from_unit))){
      echo "Must be a digit";
  };

?>