PHPverse 2025

Voting

: min(eight, three)?
(Example: nine)

The Note You're Voting On

interloper at ukr dot net
9 years ago
If you want using PL/SQL in variable:

<?php
$query
= "begin null; end;";
$stid = oci_parse($conn, "$query");
?>

or

<?php
$stid
= oci_parse($conn, "begin null; end;");
?>

<< Back to user notes page

To Top