lunes, 6 de noviembre de 2017

[Fecha de publicación. 07-11-2017]

Evaluación
leer y practicar manual 30-31-80-81.

martes, 31 de octubre de 2017

[ FECHA DE PUBLICACIÒN:31-10-2017]

Acumulativo, hosting con base de datos.

martes, 24 de octubre de 2017

[Fecha De Publicación: 24-10-2017]
 Prueba saber
Ejercicio para irnos a navidad.Sin camisas y con el blog actualizado

martes, 17 de octubre de 2017

PROYECTO

[ FECHA DE PUBLICACION:17-10-2017]

Revision blog, inicio de proyecto.
proyecto_pn_pa :10p
title: 10p
template con derechos:10 puntos
blog actualizado:20 puntos
upload: 30 puntos
nuevo nombre archivo: 20 puntos

lunes, 16 de octubre de 2017

[Fecha publicación: 10-10-2017]

Publicación de un ejercicio en el hosting. Inicio del proyecto prox clase.

martes, 3 de octubre de 2017

HOSTING

rmdir

(PHP 4, PHP 5, PHP 7)
rmdirRemoves directory

Description

bool rmdir ( string $dirname [, resource $context ] )
Attempts to remove the directory named by dirname. The directory must be empty, and the relevant permissions must permit this. A E_WARNING level error will be generated on failure.

Parameters

dirname
Path to the directory.
context
Note: Context support was added with PHP 5.0.0. For a description of contexts, refer to Streams.

Return Values

Returns TRUE on success or FALSE on failure. 

Unlink


I want to use absolute path to myFolder in above by using server document root, like below
$_SERVER["DOCUMENT_ROOT"]."/myFolder/"
It should be like below
$files = glob('$_SERVER["DOCUMENT_ROOT"]."/myFolder/*"');
But this is not working
How to correct this?
Actually I am trying to do this:
<?php
//Delete All files from folder
// $files = glob('myFolder/*');

$files = glob($_SERVER["DOCUMENT_ROOT"]."/myFolder/*");

foreach($files as $file){
if(is_file($file))
unlink($file);
} 
?>
Code below is working
$files = glob('myFolder/*');
This below is not working
$files = glob($_SERVER["DOCUMENT_ROOT"]."/myFolder/*");
I want to use absolute path to myFolder