Jump to content

DylanBlitz

Members
  • Posts

    99
  • Joined

  • Last visited

    Never

About DylanBlitz

  • Birthday 07/07/1970

Contact Methods

  • Website URL
    http://www.buxombombshells.com

Profile Information

  • Gender
    Not Telling
  • Location
    OC Baby!

DylanBlitz's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. oh, so your talking about files on your local computer? Not located on the server? Uploading the file is fairly easy. What do you want to do with it once it's on the server? Are you looking to upload only text files then manipulate them once they're there?
  2. what do you mean by a file picker? You mean a way for the user to select a file and then open it?
  3. Here is the php.net example <?php // get contents of a file into a string $filename = "/usr/local/something.txt"; $handle = fopen($filename, "r"); $contents = fread($handle, filesize($filename)); fclose($handle); ?> http://www.php.net/manual/en/function.fread.php
  4. I'd try and see if this will help. if(mkdir($thisdir ."/$login" , 0755, true)) { chmod($thisdir ."/$login", 4755); }
  5. I'd do it like this $matho = array('+', '-', '*'); $math_var = $matho[rand(0, 2)]; switch ($math_var) { case '+': echo $number1 + $number2; break; case '-': echo $number1 - $number2; break; case '*': echo $number1 * $number2; break; }
  6. I'm not the best at .htaccess rewrite's and I'm running into a problem with a clients site. I have a site I setup and it's worked everywhere else with this in the .htaccess Options +FollowSymlinks RewriteEngine on RewriteRule ^p_(.*) view_profile.php?urlname=$1 The problem is that on this person's site they already have some rewrites in their .htaccess and mine just isn't working. Can anyone tell me where I need to start looking to see why mine doesn't work now? Options +FollowSymlinks RewriteEngine on RewriteCond %{HTTP_HOST} ^$ [OR] RewriteCond %{HTTP_HOST} ^www.$ RewriteRule ^(.*)$ http://clintstang.com [R=301,L] RewriteEngine On RewriteRule ^(sitemap.*\.(xml\.gz|txt))$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L] RewriteEngine On RewriteRule ^p_(.*) view_profile.php?urlname=$1
  7. Are you talking about a DHTML tree script? Works kind of like windows explorer. If you are then there's a ton out there. I'd download a free one and teach yourself how to do it yourself.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.