PHPKonf 2025 Baku

Voting

: eight plus zero?
(Example: nine)

The Note You're Voting On

interloper at ukr dot net
10 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