Recent content by Island360

  1. I

    how to install java programming environment?

    There's nothing special about installing JDK or an IDE it's just like a normal setup, it only takes a few minutes too :P
  2. I

    How do i make an animated PNG file? design photoshop?

    I've never seen an animated .png before, the only image format that can handle animations is .gif.
  3. I

    PHP where is my error here?

    Is all your variables set? EDIT: The problem is that the double quotes are weird, maybe it's the character set your using. use single quotes instead. <html> <head> <title>My Movie Site - <?php echo $favmovie; ?></title> </head> <body> <?php //delete this line: define(“FAVMOVIE”, “The Life of...
  4. I

    php - SQL syntax error?

    I just cannot find what's wrong with this piece of code, The database table and field names is correct I just don't get it. $query="INSERT INTO ads (name,cat,desc,posted,user,active) VALUES ('$title','$cat','$desc','$date','$name','1')"; mysql_query($query) or die(mysql_error()) ; The output...
Back
Top