Search results

  1. G

    PHP: best Page Load Time script?

    put this code at the very top of your webpage <? $time = microtime(); $time = explode(' ', $time); $time = $time[1] + $time[0]; $start = $time; ?> and this at the very bottom <? $time = microtime(); $time = explode(' ', $time); $time = $time[1] + $time[0]; $finish = $time; $total_time =...
  2. G

    Neopets HTML lookup layout coding that actually WORKS?

    I can only presume you are building in tables and have never used css before ( as someone that knows css would never ask a question like that ) put something like this between the <head> tags <style type="text/css"> <!-- body { background-image:url('back.jpg'); background-attachment:fixed; }...
Back
Top