AU Study/CSG2431 Interactive Web Development

Chapter1: PHP Crash Course

Last72 2018. 8. 4. 15:46

<?php
  echo "<p>Order processed at ";
  echo date('H:i, jS F Y');
  echo "</p>";
?>

Basic style of php


$_POST['tireqty']

Basic style of variables


$a = 5;
$b = &$a;
$a = 7; // $a and $b are now both 7
Reference Operator



저작자표시 비영리 동일조건 (새창열림)