Jump to content

Maknis

Members
  • Posts

    18
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Male
  • Location
    Australia

Maknis's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. try if(_root.score > 3) { leveltext.text = "Level: 2"; }
  2. Looking at your script you will need to do ALOT first i would say put all your content into a div and use the css: margin: auto 0; or is it margin: 0 auto; im not sure. in yor script you are using css #center to reference to somehing that doesn't exist to reference to a <center> tag you simply use center in your css using a # is refereing to something like <div id='center'> and using a . is to a class <div class='center'> i would use something like.. <html> <head> </head> <body> <div id='page-wrap> <!-- Content in here --> </div> </body> </html>
  3. I believe what you need to look into is your <tr> and <td> tags and the "colspan" or "rowspan" properties. you might also want to look at the "valign" property for the text hope this helps
  4. Your form has no action? should it not have an action so it knows where to go to process the php?
  5. Maybe.. $sql4 = 'SELECT * FROM image WHERE FK_OB_ID = "$Obituary_ID" AND default = 1';
  6. Maybe store it in an Array and then Push the array http://au.php.net/array_push
  7. that will do it also in case you didn't know.. margin: 0; will give 0px to top left right and bottom margin: 0 0; is the same but the first 0 represents both top and bottomt and the 2nd 0 is left and right or you could go right out with margin: 0 0 0 0; think of it as a clock the order is Top right bottom left. ** i may have the orders mixed up been a while since i played with them
  8. Would a Shuffle($array); work as well?
  9. something like ORDER BY RAND() LIMIT 0,25;
  10. can you paste the page code here http://pastebin.com/ so we can see it BUT remember not to leave your passwords and stuff in if is there
×
×
  • 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.