3v4l.org

run code in 300+ PHP versions simultaneously
<?php // receive the data and assign them to variables $cust=$_POST['customer']; $prod=$_POST['product']; $qty=$_POST['qty']; //print out the values echo "Your Order details are as follows<br>"; echo "Customer names : ". $cust."<br>"; echo "Product name:".$prod."<br>"; echo "Quantity ordered :".$qty."<br>"; ?>
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/LqIlG
function name:  (null)
number of ops:  20
compiled vars:  !0 = $cust, !1 = $prod, !2 = $qty
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    5     0  E >   FETCH_R                      global              ~3      '_POST'
          1        FETCH_DIM_R                                      ~4      ~3, 'customer'
          2        ASSIGN                                                   !0, ~4
    6     3        FETCH_R                      global              ~6      '_POST'
          4        FETCH_DIM_R                                      ~7      ~6, 'product'
          5        ASSIGN                                                   !1, ~7
    7     6        FETCH_R                      global              ~9      '_POST'
          7        FETCH_DIM_R                                      ~10     ~9, 'qty'
          8        ASSIGN                                                   !2, ~10
   11     9        ECHO                                                     'Your+Order+details+are+as+follows%3Cbr%3E'
   13    10        CONCAT                                           ~12     'Customer+names+%3A+', !0
         11        CONCAT                                           ~13     ~12, '%3Cbr%3E'
         12        ECHO                                                     ~13
   14    13        CONCAT                                           ~14     'Product+name%3A', !1
         14        CONCAT                                           ~15     ~14, '%3Cbr%3E'
         15        ECHO                                                     ~15
   15    16        CONCAT                                           ~16     'Quantity+ordered+%3A', !2
         17        CONCAT                                           ~17     ~16, '%3Cbr%3E'
         18        ECHO                                                     ~17
   18    19      > RETURN                                                   1

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
142.66 ms | 1393 KiB | 13 Q