Search results

  1. S

    download instead of view

    How do I get it so that people download a file rather than viewing it when useing a certain link? eg. <a href="images/picture.png">Download:</a> Instead of the picture being downloaded the brower will just open it :( I'd rather not have to make a copy of every file inside a zip as I also need...
  2. S

    getting the url for the current page

    How can I get the url for the current page in php? I tried these but none returned the exact url :( $_SERVER['SCRIPT_NAME'] $_SERVER['PHP_SELF'] __FILE__ I just want it to to just get the same url as dsiplayed in the user adress bar.. (includeing the domain and ?myvar = value etc)
  3. S

    resiseing images with php

    How do I resie an image in php? I want it to copy './images/' . $file . '.jpg' to... './images/thumbnails/' . $file . '.jpg' which I think I can do with copy(); But then how do I resize the image I just copied?
  4. S

    Is this allowed?

    Well I was wondering if I'm allowed to do these two things on X10 or not: 1) Am I allowed to give people working on projects with me access to an ftp acount. This would basicly so we can all have access to the same file set (grafics, sounds, source code etc) and would not effect the website...
  5. S

    problem with sessions not working in php

    Why is the session not kept between pages? <?php $message = ''; include('./globals.php'); $con = mysql_connect($data_host,$data_user,$data_pass); mysql_select_db($data_base, $con); if(isset($_SESSION['user_name'])) { $message .= 'Session exists<br>'...
  6. S

    ad placement

    Is my site (http://syncproductions.exofire.net) within the rules regarding ads? I ask because somewhere (either tos or one of the things one of the staff posted I forget). said it must be visible without scrolling (really unhelpful btw seeing as that depends in if my borwes window is 640*480...
  7. S

    CPanel problem

    I get this when ever I try to get on my cpanel from a remote location. This is really annoying as I often want access to do stuff while i'm not at home (eg at school) The requested URL could not be retrieved While trying to retrieve the URL: http://syncproductions.exofire.net:2082/ The...
  8. S

    php problem

    For some reason it just seems to get empty strings from the data base. I have no idea if it's because of my data base or an error in my code though :( The php code: <html> <?php $con = mysql_connect("localhost:3306","syncview_site","*yeah the pass is set but i'm not telling:)*"); if...
  9. S

    page headers

    How can I have all my pages display a "header" from an other file (eg main_head.htm). I'd rather do it this way than copy paste the ad infomation into every page as if the link changes or I want to add my own adds as well I'll have to edit like 100 pages rather than just a single header file...
Top