Recent content by ???? mike lol

  1. ?

    photoshop, make selection at center?

    how can i make a selection that is aligned at the center of the canvas? like with shapes, you can just use the move tool and click on align horizontal/vertical
  2. ?

    javascript, php, and mysql?

    i just got started with php and mysql. so i tried making my own guestbook. it's got the main guestbook.php page with the form and everything. then the form passes the info to an addcomment.php that stores the data into the tables. i was wondering... i have <form action="addcomment.php"...> is...
  3. ?

    WHAT IS THE REQUIREMENTS BEFORE I CAN INSTALL PHP MYSQL DATABASE?

    you need a web server like apache or something
  4. ?

    Please Help Me!!! I Need To Find A PHP and MYSQL DATABASE FREE HOSTING SERVICE!?

    yeah default page is index.html or index.php also x10hosting is free and has mysql with phpMyAdmin to make management easier.
  5. ?

    HTML code help? Picture on the left side of a table?

    you mean having a picture outside the table, to the left of it? you can use css, float:left so something like <img src="wat.jpg" style="float:left" />
  6. ?

    How do I make text on a single HTML page link to different outputs of a single

    you'll need server side scripting to be able to dynamically change the webpage. check out php
  7. ?

    html div background width to fill screen?

    ok i just made a simple separator line <div style="background-color:#004488; width:100%; height:2px;"></div> however it does not stretch across the screen entirely, there's a small gap on all sides. how can i make it fill across?
  8. ?

    adding external css to html?

    i cant get the css to work! i have no idea what im doing wrong the css file looks like: div#navbar ul { list-style:none; } and in the html i got: <html> <head> <link rel="stylesheet" type="text/css" href="style.css"/> </head> <body> <div id="navbar"> <ul> <li><a...
  9. ?

    building an html dom tree, java?

    ok so i parsed a simple html file into an arrayList of nodes. the node class is: String s; //name of node ArrayList<node> children; public node(String) { ****this.s = s; ****children = null; } an example arrayList looks like: [<html>, <body>, "oh", <em>, "hi", </em>, "there", </body>, </html>]...
  10. ?

    how to print html dom tree?

    i have a DOM tree of a parsed html file. the tree is made of nodes which hold a string and an arraylist of children nodes. i'm stumped on how to print out the html code equivalent of the tree. for simplicity, the DOM tree doesn't have any complicated stuff, just a few tags and some text. for...
  11. ?

    transparency with a drop shadow, photoshop?

    how do i add transparency to a text image that has a drop shadow? like if i fill it up with a color, then the transparent part obviously looks all jagged and messed up because of the shadow's fade. anyone have a tut for this?
Back
Top