Search results

  1. E

    ASP/PHP assisting program for non ASP/PHP user

    Sorry, I've only ever written my own. -Erik
  2. E

    ASP/PHP assisting program for non ASP/PHP user

    Sounds like you may want to search for an article manager rather than a full blown CMS. I agree that CMS systems like Joomla are way too much for the average user to deal with. With an article manager you could isolate the content the user can update without risk of destroying the template or...
  3. E

    Learning HTML+CSS

    It is a totally subjective question. Everyone learns new skills at different speeds. For starters it depends on your background, and how well you comprehend logic and basic math. HTML is pretty straight forward. It is the CSS that takes a lot longer to grasp. The best way to learn is to...
  4. E

    Best Open Source E-Commerce CMS

    Joomla with Virtuemart. Free with tons of add ons. I've set up many. I found learning Joomla the hardest part as it is very involved. The good news is there is a large community out there you can turn to for help. -Erik
  5. E

    Petition script?

    Did you try http://www.petitionscript.net? Looks like you have to register in their forum to download, so can't verify it is totally free. -Erik
  6. E

    Change row background color based on value in textfield

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>Colors via Javascript</title> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <script type="text/javascript"> function updateRows()...
  7. E

    Embedded Player, Songs from Folder Script

    Heh, I think that was my suggestion from another forum. What is the error message? Are you sure of the path? To get the full absolute path, put this in a php file in the same folder as your mp3 files and load it in a browser: <? echo realpath('./'); ?> See if that matches the...
  8. E

    PHP help....

    Sorry, but comparing MySQL to Excel seems very strange to me. One is a spreadsheet based on cells and formulas where the other is a database that requires the use of SQL and integration with a programming language such as PHP. The two are completely different approaches. To answer the...
  9. E

    mysql triggers

    Perhaps try using a container class. The container class contains a property (variable) for each field in the table. There is a get and set method for each property. The get method for the email address is where I would append the "@aol.com" value. -Erik
Top