Recent content by jacer17

  1. J

    Verizon Wireless Mobile Email and IM?

    I got Verizon Wireless plan/phone. I got the unlimited texta, data, and email. I keep on getting an text message about mobile email. When I visit the app, it says $5 subscription, but at the store, they said it was free. I'm not going to pay $5 for an app, when I can check my email using...
  2. J

    HTML HELP!!! Creating Collumns & Music?

    You should look up the div tag. Using css and the div tag, that is how I design most of my websites. Some of the of the more specific css properties, is: position, margin-left, margin-top, padding, width, and height. There are several ways to embed music into your site. You can use google...
  3. J

    automatically clear user entry form in html?

    Javascript... Make some function like clearData(). And on the submit button, you can have an onClick="ClearData()". Inside clearData() You could have something like document.getElementByName('inputFieldName').value = ""; For each field in your form.
  4. J

    HTML/Photoshop slices help?

    When you use photoshop slices, you pretty much cut your images into parts, using HTML's <table>. If you were to open and edit the .html file photoshop creates, you'll see a table and a bunch of <tr>'s, <td>'s, and <img's. Using html, you can edit the .html file and add whatever text you want...
  5. J

    PHP MYSQL Help........?

    Editing in basic, you can use PHPMyAdmin. Which allows you to edit your database. If you need want a custom script, then you'll have to google up a script or write one yourself.
  6. J

    Need help with PHP!!?

    change $headers to $headers = "From: . " . $email; print to print('<a href=\"index.html\">Thank you! Your email has been received!</a>'); Contact me if you need more help.
  7. J

    Use of Variables in HTML/PHP?

    No. You can't have variables inside the quotes. There are few options you can use. 1.) <title> <? echo $PageTitle; ?> </title> 2.) echo "<title>" . $PageTitle . "</title>"; You can contact me if you have any more questions.
  8. J

    How can Information Technology help save the environment?

    How does it not? If you're talking about technology in the computer world, then its taking great strives. One of them is basic. No matter how advance your hardware or software, it all takes electricity. They're are many ways to acquire electricity in greener and more environmental ways. For...
Back
Top