Recent content by wizkid

  1. W

    running gcc on server

    i could actually run some of the commands on my server such has unpacking a tar file , directory listing etc. i did try installing gcc on some other folder (othe than usr/bin), but i think i didnt had the privilgegs to use make command. if Someone could please tell if i can run any compiler...
  2. W

    running gcc on server

    could anyone please tell me how(if possible) i can run gcc on my server. actually i wanted to compile a c program on my server i tried using exec(), and shell_exec() function but none worked. it just showed permission denied. :(
  3. W

    Problem viewing page in IE6

    i somehow finally managed to reduce my problem. Now the home page doesn't work in IE6 actually i have paced a background image in the content div and absolutely positioned a links below the text in the image. on hover the background image for a links chanes to give a glow effect. there is...
  4. W

    Problem viewing page in IE6

    is this conditional css supported by all browsers??
  5. W

    Problem viewing page in IE6

    the css validates now and as far as the html is concerned the errors correspond to lack of type attribute in javascript(sumthing which cannot b responsible for d improper display)
  6. W

    Problem viewing page in IE6

    i am making this website www.phoenix-dce.com tha page displays correctly on firefox/chrome but goes haywire on IE6 Please help me debug this thing(its really urgent) <?php session_start(); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"...
  7. W

    page refreshes on logout

    it was just that i wanted to learn more............... i wanted to write my own script. but now odds are going i favour of jquery Edit: an interesting observation when i press logout no POST request is made to the server. only the page is refreshed. and if i directly call the page logout.php...
  8. W

    page refreshes on logout

    here is a minimal php page for this site check out phoenix.exofire.net/minimal.php //minimal.php <?php session_start(); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html...
  9. W

    page refreshes on logout

    i made a login system using php and ajax. the login is perfectly fine but however when i logout (by making a post request to logout.php) the whole page automatically refreshes after the request and response is complete. //logout.php session_start(); unset($_SESSION['uid'])...
  10. W

    making multiple ajax request on one page

    thanx.................i think i need more practice at writing better a js
  11. W

    making multiple ajax request on one page

    i was trying to make two separate ajax request on one page www.phoenix.exofire.net/events.php i have two js written for it. when only one of the js are inserted it works fine , however when i insert both th js into my code one of the request doesnt take place. //login.js var xmlHttp; var...
  12. W

    getting a new domain

    i require .in doman .which they dont seem to be offering . Besides the prices i am more interested in finding out which services should i look for??
  13. W

    getting a new domain

    i wanted to buy a new doman name for my college website. i checked out various sites and couldnt figure out which one is good or bad. please tell me which features i should look out while purchasing a domain name. please be a bit elaborate as this is the first time i would be buying domain name
  14. W

    css div size

    i do agree that it could be solved using tables , but i was trying to acomplish it without using tables as i have read that they are often considered innappropriate for creating page layouts. Edit: finally i have been able to get a workaround for the above problem by styling the div and...
  15. W

    css div size

    i tried setting up the background of the entire page. however it didnt worked as expected. please recheck that page i did some changes.
Top