PHP Classes

File: config/select_logo.php

Recommend this page to a friend!
  Classes of jon   PHP Folder Image Gallery   config/select_logo.php   Download  
File: config/select_logo.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Folder Image Gallery
Display images and folders inside a directory
Author: By
Last change:
Date: 1 year ago
Size: 395 bytes
 

Contents

Class file image Download
<?php

//get the new "logo filename" which would be assigned to the $_POST['value'] variable, and write to "config.cfg" file
$filename = $_SESSION['drive_site_dir'] . 'config.cfg';
$line_i_am_looking_for = 3;
$lines = file( $filename , FILE_IGNORE_NEW_LINES );
$lines[$line_i_am_looking_for] = $_POST['value'].';';
file_put_contents( $filename , implode( "\n", $lines ) );






?>