Search results

  1. C

    Sending javascript variables to flash?

    I am looking to send a variable which contains an image url, into flash. Can someone either tell me, or send me a tutorial on how to do this please, thanks :) oh and its gotta be ActionScript 2.0
  2. C

    When did Mongolian Civilization Emperor Genghis Khan attack and occupy...

    He didn't conquer China-not much of it, at least. Quote from Wikipedia "While Genghis Khan never conquered all of China, his grandson Kublai Khan completed that conquest," It was on or more of his decendants who conquered China. Kublia Khan is the best known one. See...
  3. C

    Is it necessary 2 learn php having knowledge of asp.net?

    "As horrible a scripting language as it is, it is still the primary language used for dynamic web control." Sounds like someone's bitter... I can think of scripting languages (::coughVBScriptcough::, ::coughJScriptcough::, ::coughClassicASPcough::) put out by Microsoft that are MUCH more...
  4. C

    how long is the navy going to accept geds? because the army doesnt accept

    them without college creds? i dropped out of school because of family issues im currently taking a class for my ged i went to a navy recruiter to talk to him about joining the navy he told me to come back its gonna take me about 2 months to be able to enlist into the navy but i don't wanna study...
  5. C

    Sex while on your period?

    Do it in the shower.
  6. C

    How do i tell my parents that i dont want to play sports anymore?

    I had the same situation. I hated the practices but I also wanted to focus on baseball. Even if you don't have another sport that you want to pursue instead, tell them you want to focus on your school work, or whatever interests you more than football.
  7. C

    Html coding w/ javascript?

    // Remove this... var password = prompt("password",""); I was wondering also, why does your show_prompt() function accept a variable 'x'? I don't see the point.
  8. C

    What program I need to create flash games?

    Adobe Flash (not free) or Adobe Flex (also not free) As well as extensive knowledge of Actionscript - at least to make a half way decent game.
  9. C

    How do you change a string into an integer in PHP?

    If the string does not contain any of the characters '.', 'e', or 'E' and the numeric value fits into integer type limits (as defined by PHP_INT_MAX), the string will be evaluated as an integer. Alternatively there is the intval function: <?php $string = "32"; $newstring = intval($string)...
  10. C

    How to make proper looking urls with php?

    when i build a website with php and mysql my url ends up looking like this: site.com/index.php?id=1 thats fine, it works ok, does what i want etc.. but how do you make your your urls look proper, like this website for example http://www.tonsoftackleuk.com if you click on any of thier links...
  11. C

    How to get round HTML tables?

    You can use spify corners to generate your CSS to create rounded corners with pure HTML and CSS. http://www.spiffycorners.com/
  12. C

    Are there PC cases that have light kits that flash to music?

    I am wondering if there are any computer cases out there made that have light kits that respond (flash or blink) to the beat of music. Preferrably a clear acrylic type case but doesn't have to be. If so, where could I find such a case? If there are no cases that come with that type of light kit...
  13. C

    What is all that extra text after some html css/src attributes? (i.e. image.gif?214532)?

    Anything after the "?" is called a query string. How the webmaster handles the query string depends on what their needs are. I can tell you from personal experience, I've placed a random number or the date as a query string on some CSS files to ensure that the browser doesn't display a cached...
  14. C

    Which is better on Google Adwords: The Image Ad or the Link Ad?

    Statistically, a well written plain text link achieves a higher CTR (Click Through Rate) than static banner ads. In most cases, a higher CTR is more desirable to an advertiser... Ad price per click depends entirely on your market. I've seen them from 5 cents to $15 per click...
  15. C

    Which is better on Google Adwords: The Image Ad or the Link Ad?

    Statistically, a well written plain text link achieves a higher CTR (Click Through Rate) than static banner ads. In most cases, a higher CTR is more desirable to an advertiser... Ad price per click depends entirely on your market. I've seen them from 5 cents to $15 per click...
  16. C

    Please help on the below php code i get error on line 35?

    This line: echo "<td><input type=text name=$label; ></td></tr>"; is your problem. Change it to: echo '<td><input type="text" name="'.$label.'"></td></tr>'; Attribute values should always be in quotations...
  17. C

    HTML Question, need to force someone when they enter a website, to be pushed...

    If you can't use server-side scripting like PHP, you can do this with pure HTML: <html> **<head> ****<meta http-equiv="refresh" content="0; url=http://www.newsite.com" /> **</head> **<body> ****<p>Redirecting...<a href="http://www.newsite.com">Click here to force redirect</a></p> **</body>...
  18. C

    What Web Browsers Support HTML 5 & CSS 3?

    No browsers fully support either of these yet. You'll see sporadic partial support by various modern browsers, but none with full support. Both (HTML5 and CSS3) are still works in progress and have not yet been recommended by the W3C.
  19. C

    Most recent data from php?

    Store the date in your database table that each topic was created on, then sort the results, using ORDER BY, by date.
  20. C

    What program is best for coding for a website and using HTML?

    I use good old fashioned Notepad because it's free and I'm cheap. Some people use DreamWeaver or Frontpage, but these are going to cost you.
Back
Top