Skip to content

Tag: php

how create sorting sql/php with parent

phpmyadmin picture index.php file $id = ‘8’; $idr = $row[‘id’]; echo ‘id-‘.$id.’ : ‘; for ($i = 0; $i <= $id; $i++) { $sql="SELECT * FROM menu WHERE parent='$i' "; $result = mysqli_query($…

PECL Package Installation Fail In Docker

When installing opencensus-alpha from PECL package manager in docker as part of dockerfile, an error is thrown /bin/sh: pecl: not found Dockerfile Is there any easy way opencensus-alpha can be installed and enabled in a docker container Answer You’ll need the php7-pear package to get the pecl command, a…