Search results

  1. J

    PHP forms

    This tutorial has emphasis on processing PHP forms with security in mind! There are too many tutorials out there that rely on PHP's notorious register_globals setting activated with very little or no form input validating. Proper validation of form input data is the most important step in...
  2. J

    Javascript date object

    Display time How to display the time on your pages. Note that this script is similar to the Time example above, only this script writes the time in an input field. And it continues writing the time one time per second. <html> <body> <script type="text/javascript"> var timer = null...
  3. J

    PHP/SQL query

    Let's try to do a query of our database for people who have cats for a pet. We will do this by adding a WHERE clause to set pet equal to Cat. <?php // Connects to your Database mysql_connect("your.hostaddress.com", "username", "password") or die(mysql_error())...
  4. J

    SVG issues with PHP?

    Now I have opened these files in Inkscape on my computer and made changes for the next printing. I saved the first Inkscape-modified file 4 ways as: inkscape svg plain svg compressed svg eps I sent all 4 to the printer and he couldn't open any of them. Any ideas on what I could try...
  5. J

    PSD To Dreamweaver

    Don't do it in PSD. An image-based webpage makes for terrible usability, and will get you NO search engine hits (search engines have to scan text -- if all your text is in images, there's no text to scan). Instead, slice up your current PSD template, retaining only the graphic portions, and...
Top