Search results

  1. D

    what can php do for a website how powerful is it?

    I have been very impressed with php after 2 weeks of tinkering with it (for the first time). The limitation is this only works on a server. php is not java or javascript. I can't write a program and hand it to you. I have to present any powerful features I am capable of coding from an...
  2. D

    Differences between ASP.NET and PHP?

    ASP.NET is Microsoft and PHP is Open Source. You don't need a license for PHP, you join the majority of installations out there on the web, you gain a community ready to help you. Linux is the better web development platform. Period. And the combination of LAMP is a quick install of Linux...
  3. D

    In php what is the meaning of $a{'b'} as opposed to $A['b'] ?

    $A['b'] would be a call to an array slot with the identifyer 'b' and $a{'b'} is a special use variable. Remember that php wants whitespace to parse with. $new_var = "Sports$a{'b'}like"; which would cause php to evaluate the value in the braces before continuing the expression.
  4. D

    How can we use facts to prove that there was no dominant civilization during the

    None of the gods of that era survived long enough to witness the newer ones. Egypt and the Middle East have history way before the first Jewish migration from Babylon, like 14,000 years. The Neanderthal has vanished from the Rock of Gilbratar 15,000 years before that. So, I can't argue "no"...
  5. D

    do you have to reinstall your OS if you flash your bios?

    BIOS flash might lose some driver functionality, and then you have to go find the driver that ran a video capture card, for instance, or a serial cabeled flatbed scanner. If it all comes unglued, you can always use Linux. Download Ubuntu and burn the ISO to CD before you flash. Flashing BIOS...
  6. D

    How do I turn a jpg photo into a poster WITH my business name and phone number?

    It takes special software to blow up a digital photo to poster dimensions. Most digital photo-print services have poster service that can order for you. The results is pretty good and affordable. Start out by going to a copy serivce store that is open 24 hours and offers package delivery along...
  7. D

    How Do I Create A Solitaire Game In Flash ?

    I did a google card games actionscript link below would let you start small, and build up. coding a card game is a large activity, but once you understand what code does a certain game of cards, the other games, such as poker, are also using the things you learned.
  8. D

    Can you run BlueJ from a flash drive?

    If the flash drive always comes up as Drive E:\ (or whatever). You should be able to install BlueJ to that drive. Java needs a path to the JRE and another path to the /bin inside the Java1.6_uxx folder. NetBeans maintains a database of the paths to those locations on the hard drive. Maybe BlueJ...
  9. D

    Java Programming, how in a graphics2D, program can I make the background flash black...

    Graphics2D would allow gradiants, masking , rotation, and things like that. Any reason why you want the extra graphics functionality? Have you got other Graphics2D? Are you painting to an Image offscreen?And, you say background. Applet, JApplet, or a member of javax.swing.JComponent? You can...
  10. D

    Java Programming, how in a graphics2D, program can I make the background flash black...

    Graphics2D would allow gradiants, masking , rotation, and things like that. Any reason why you want the extra graphics functionality? Have you got other Graphics2D? Are you painting to an Image offscreen?And, you say background. Applet, JApplet, or a member of javax.swing.JComponent? You can...
  11. D

    How to change the cursor in an html page.?

    cursor is a CSS property which you can change on hover, mouseexit, etc.
  12. D

    What is a good, simple to use program, that will take a list of URL's and

    More and more, the servers are monitoring to see if we have a human on the other end. What used to work in the browser as View Source is now blocked at many sites. I gained a lot of useful insight of some of the "why" of the http and the html from playing around with this book. Mr. Heaton's...
  13. D

    What is a good, simple to use program, that will take a list of URL's and

    More and more, the servers are monitoring to see if we have a human on the other end. What used to work in the browser as View Source is now blocked at many sites. I gained a lot of useful insight of some of the "why" of the http and the html from playing around with this book. Mr. Heaton's...
  14. D

    What is a good, simple to use program, that will take a list of URL's and

    More and more, the servers are monitoring to see if we have a human on the other end. What used to work in the browser as View Source is now blocked at many sites. I gained a lot of useful insight of some of the "why" of the http and the html from playing around with this book. Mr. Heaton's...
  15. D

    What is a good, simple to use program, that will take a list of URL's and

    More and more, the servers are monitoring to see if we have a human on the other end. What used to work in the browser as View Source is now blocked at many sites. I gained a lot of useful insight of some of the "why" of the http and the html from playing around with this book. Mr. Heaton's...
  16. D

    What is a good, simple to use program, that will take a list of URL's and

    More and more, the servers are monitoring to see if we have a human on the other end. What used to work in the browser as View Source is now blocked at many sites. I gained a lot of useful insight of some of the "why" of the http and the html from playing around with this book. Mr. Heaton's...
  17. D

    Human genius! I need help with flash! 64-bit browser?

    You probably have a 32-bit browser. Windows will silently 'fail' to 32-bit performance with their 64-bit OS. You might try downloading 64-bit Firefox, add 64-bit flash playa. If that is a 'go', try untangling the IE 32 bit browser (it won't be easy, either).
  18. D

    Do people hand code 1,000 lines in html?

    A complex page with flashing ads and content is generated by the server especially for the browser that visits. Javascript is the only universal scripting possible across all browsers and to make pages uniform CMS -- Content Management Systems is a variety of tiered-software. A database contains...
  19. D

    My 2000 Cadillac Deville northstar motor is overheating and loosing coolant....

    Radiator caps are a couple of bucks. You can try that. Rare, but caps lose their sealing ability. If you added windshield washer fluid to the cooling system, that causes suds and overflow. More than likely a blocked radiator core. Ask a radiator shop the charge if you pull the radiator or the...
  20. D

    Question with XML, Javascript and HTML - making a pointer when mousing over a link...?

    Curson is a property of CSS and not javascript. You use both together to hover, hilite and so forth.
Back
Top