Jump to content

koo_04

Members
  • Posts

    25
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

koo_04's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. EDIT: I have tired this and got a really crazy page... I will keep put up a screen shot. foreach($files as $file){ echo '<p><a href="'.file_get_contents($file).'">'.basename($file).'</a></p>'; };
  2. Sounds good to me. Should I be doing like this? foreach($files as $file){ echo '<p><a href="'file_get_contents(.basename($file).'">'.basename($file).'</a></p>'; }; I keep getting a broken server from it though.
  3. I would like to go from a glob list, which is working great, to a download link kinda thing. So, The glob list is shown and each file has a link. The problem is that the download folder for PHP is apparently NOT within my website, but in another portion of the server. Also that when I modify the code to work within the website, it doesnt work. Probably because of the glob array. Anyone have an idea on how to fix this? Code: <?php $dir = "/downloads/"; $files = glob($dir."*.zip", GLOB_NOSORT); // echo'<select name="Files">'; foreach($files as $file){ // echo'<option value="'.$file.'">'.basename($file).'</option>'; echo '<p><a href="/downloads/'.basename($file).'">'.basename($file).'</a></p>'; }; // echo'</select>'; ?>
  4. Thanks a ton. Now I need to just make a button that will download the selected file from the list.
  5. I wouldn't of posted it again if I didn't read and try to apply it. I get nothing out of it. Some ways I have tried it, it even breaks the webpage. :-\
  6. How should I go about using it? Replace it with glob()?
  7. I am using glob() to see a list of .zip files on my website. I wanted to display them on a drop down list. I got that working fine, but the file path shows up with it. Any idea how to remove it? Here is the code I am using. <?php $dir = "/downloads/"; $files = glob($dir."*.zip", GLOB_NOSORT); echo'<select name="Files">'; foreach($files as $file){ echo'<option value="'.$file.'">'.$file.'</option>'; } echo'</select>'; ?>
  8. So I manualy installed everything and my PHP pages work great. But now I am having issues with PHP communitcating with mysql. I keep getting stuff like "The installer was unable to detect MySQL support in PHP. Please ask your host to ensure that PHP was compiled with MySQL, or that the proper extension is being loaded."
  9. When I try to run the PHP page I get This is the code <?php $db = mysql_connect("localhost", "root", "Password") or die("Could not connect."); if(!$db) die("no db"); if(!mysql_select_db("database_password",$db)) die("No database selected."); if(!get_magic_quotes_gpc()) { $_GET = array_map('mysql_real_escape_string', $_GET); $_POST = array_map('mysql_real_escape_string', $_POST); $_COOKIE = array_map('mysql_real_escape_string', $_COOKIE); } else { $_GET = array_map('stripslashes', $_GET); $_POST = array_map('stripslashes', $_POST); $_COOKIE = array_map('stripslashes', $_COOKIE); $_GET = array_map('mysql_real_escape_string', $_GET); $_POST = array_map('mysql_real_escape_string', $_POST); $_COOKIE = array_map('mysql_real_escape_string', $_COOKIE); } ?>
  10. I found the problem...
  11. I get this in the error (before I restore it)
  12. I do have those set as well as # configure the path to php.ini PHPIniDir "C:/php"
  13. So I had to change some stuff, none of it major. Stuff like the extension_dir and such. BEFORE I did much, I had that code working fine. Then I did some changed... well a lot of changes that I cant remember, now it stopped working. I just get "<?php phpinfo()?>" in text. I was origanlly trying to make the mysql DB stuff to connect. Please help!
  14. I am running PHP 5 on IIS 5.0 and I am using ISAPI module. We have everything set up correctly, as far as I know. Sept that we get this error.. %1 is not a valid Win32 application. Any suggestions?
  15. If I am correct, we just reinstall php with the OSAPI setting instead of CGI. After that we add the ISAPI.dll in the filter of IIS
×
×
  • 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.