Search results

  1. VPmase

    flash proportions

    The simplest way is <img src="LINK/To/Image.jpeg" alt="" /> <br /> <embed><object></object></embed> Of course you'd actually have to script it.
  2. VPmase

    hello mates

    Hope you like your stay :)
  3. VPmase

    PHP Login

    Elaborate on what you mean...
  4. VPmase

    Three Minute Meals

    Lol. Those are nice.
  5. VPmase

    what you think of this guy

    Lol Brandon. This guy can't sing for crap. I'd never listen to him.
  6. VPmase

    How do I upload smilies on vBulletin?

    Is the folder "images" in the vBulletin folder? Does the smilies folder exist?
  7. VPmase

    What would you rather have

    PS3 has so great games but 360 has a ton of fun good games. 360 wins IMO.
  8. VPmase

    Anyone still play!

    I used to rock at that game but I've been too busy with school and other stuff... ><
  9. VPmase

    flash move clip instance to be a number

    What are the other MC's instance names?
  10. VPmase

    flash proportions

    So the table is liquid? Maybe this can help: http://www.tutorio.com/tutorial/liquid-flash-layout
  11. VPmase

    JavaScript calculation problem!!!!

    Hmm... It's going to take me a while to figure the problem out so I made you a simpler one. http://www.saumpro.com/EsamTests/test3.html <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Calculator</title> </head>...
  12. VPmase

    flash proportions

    What do you mean by proportional? Do you want it to just fit the page or do you have a specific size ratio you want?
  13. VPmase

    Diablo 3 or Starcraft 2???

    Diablo 3 for sure! Starcraft is fun but Diablo is WAY better xD
  14. VPmase

    JavaScript calculation problem!!!!

    I'm sorry but that is such a useless post. Give me a minute and I'll see if I can find anything wrong. Also, its recommended you don't use variables that are preset like form and etc. Edit- I couldn't find the problem in your code before my patience ran out so I made a similar calculator...
  15. VPmase

    sorting mysql data with the same fields

    Try this: <?php $query = "SELECT * FROM students ORDER BY highschool"; $result = mysql_query($query); $numrows = mysql_num_rows($result); $n = 0; while($row = mysql_fetch_array($result)) { if($n>0 && $row['highschool'] == $hs[$n-1]){ $n -= 1; } $hs[$n] = $row['highschool']...
  16. VPmase

    Mouse behaviours

    Add this code to the <a> tag: onmouseout="MM_swapImage('Image1','','Images/phase1.jpg',1)"
  17. VPmase

    Browser reviews!

    Moved to Off-Topic where a lot of threads like this one are...
  18. VPmase

    suggestion

    You could also try http://chatango.com or a http://meebo.com widget.
  19. VPmase

    MySQL and if statement...

    You need a ; after this line - actually you just need to move the ; infront of the " to after the last ) $sql = mysql_query("INSERT INTO 'vpcs' ('ID_MEMBER', 'id2', 'IP', 'Pass', 'Text', 'HDD', 'Conn', 'CPU', 'RAM', 'Psupply', 'Cfan', 'os', 'Type', 'Date', 'SPass', 'Reg') VALUES...
  20. VPmase

    image urls in sql

    You can't store images in a database, at least to my knowledge. What you can do is get the link to the image, remember you can't have any sort of image hosting on your account except for your own files, save the link into the database then when you go to retrieve the link put it in the src=""...
Top