Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
M

Mona sinha

@Mona sinha
About
Posts
2
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • custom Css not working on MAC operating system
    M Mona sinha

    This is simple code used in css.

    div {
    background: url(background.jpg);
    background-size: 800px 600px;
    background-repeat: no-repeat;
    }

    If you not want to use background image, remove 1st line of code. You can use background size in "%" also, thats will fits in all browser.

    Web Development css com help question

  • Hide download URL in PHP
    M Mona sinha

    This is how you can hide download url in PHP:

    <?php
    $fakeFileName= "fakeFileName.zip";
    $realFileName = "realFileName.zip";

    $file = "downloadFolder/".$realFileName;
    $fp = fopen($file, 'rb');

    header("Content-Type: application/octet-stream");
    header("Content-Disposition: attachment; filename=$fakeFileName");
    header("Content-Length: " . filesize($file));
    fpassthru($fp);
    ?>

    You can see all steps to hide download url here http://5ss.co/viewtopic.php?f=26&p=3[^]

    Web Development php com question announcement
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups