Jump to content

vytas

Members
  • Posts

    374
  • Joined

  • Last visited

About vytas

  • Birthday 04/18/1993

Previous Fields

  • Languages
    JavaScript, HTML, CSS, PHP, SQL

Contact Methods

  • MSN
    vytas-klyvis@hotmail.com
  • Website URL
    http://Working on it :P
  • ICQ
    0

Profile Information

  • Location
    Holland (the Netherlands)
  • Interests
    Things i know well: Javascript , HTML , CSS<br />Things i am trying to learn: PHP , Java

vytas's Achievements

Member

Member (2/7)

0

Reputation

  1. Turtle, maybe there are some errors in the w3schools their site, but none the less w3schools whas a great place to start learning the html markup language and a good step to the more sophisticated languages. W3Fools is not in the place to be so negative about w3schools, because clearly all they can do is criticize. People don't have to choose w3schools, they choose w3schools because it's neat and orderly. When I whas learning html, w3schools wasn't the only place I looked for information I followed alot of articles and tutorials to get the hang of it. The article is just rubbish, it should be removed from the internet, you should go ask the forum members here if they like the site or not, and if w3schools has helped them.
  2. Want to help develop the "Bomberman project"?

    Comment or PM

  3. Happy Birthday :)

    Lol you dont know me!

  4. If i store the session in the database i need to put the script for that on every page (i will include it then)
  5. How do i check if the session of that user is still active :? Because i want to show how many users there are online
  6. This means the query whas incorrect , give us the SQL query and we'l try to sort things out.
  7. vytas

    change email

    well if you want a radio button use.<input type='radio'>
  8. Ok i ain't that great in PHP , so how do i split the string ??
  9. lol because this is the code for showing the send mails.$query = mysql_query("SELECT * FROM messages WHERE user = '$user'");but u didn't need to know that , u were trying to help me with the code ????(BTW: i am passing a unique id to the checkbox did u look in the code ?, i need to know how i delete multiple mails)
  10. Ok i made a mail system where user can mail each other.I display every post as like hotmail does.So my question is how can i delete the mails that were checked in a checkbox.here's the code I have so far. if($page == main){if(mysql_num_rows($query) > 0){echo " <tr> <td class='text'align='center'><i>Van</i></td> <td class='text'align='center'><i>Onderwerp</i></td> <td class='text'align='center'><i>Datum</i></td> </tr>";}while($row = mysql_fetch_array($query)){if(mysql_num_rows($query) > 0){echo "<tr><form action=''method='post'> <td class='text'><input type='checkbox'name='delete'value='".$row['id']."'>".$row['van']."</td> <td class='text'><a href='bericht.php?x=bericht&id=".$row['id']."'>".$row['title']."</a></td> <td class='text'>".$row['time']."</td></tr>";}}if(mysql_num_rows($query) == 0){echo "<tr><td class='text'align='center'><i>Geen nieuwe berichten</i></td></tr>";}$deleted = $_POST['delete'];if(isset($deleted)){mysql_query("DELETE FROM messages WHERE id = '$deleted'");header("Location: bericht.php?x=main ");}echo "<tr> <td class='text'colspan='3'><input type='submit'value='delete'></td></tr></form>";}
  11. Pls give your opinion about this site:website Thx
  12. Ok thx alot :) one more question how do i add time in the cookie (never used cookies before)
  13. I have seen quite a few site's that log you out after a time of inactivity.Maybe this is a nooby question but how do they do that ?
  14. vytas

    div background image

    I fixed it already i forgot to close " witth the font-family
  15. vytas

    div background image

    Ok i am using div's for positioning for my layout , but i have one problem in IE (6) i think.The div's don't got the images as the background they aren't even there ok here's the CSS code i am using. <style type="text/css"><!--#text1 { position:absolute; top:145; left:250;}body { background-color: #201d1d; color: #ffffff; font-family: "verdana;}#game-design2-01 { position:absolute; left:100px; top:0px; width:800px; height:145px; background-image: url('game-design2_01.gif');}#game-design2-02 { position:absolute; left:100px; top:145px; width:800px; height:7px; background-image: url('game-design2_02.gif');}#game-design2-03 { position:absolute; left:100px; top:152px; width:1px; height:448px; background-image: url('game-design2_03.gif');}#game-design2-04 { position:absolute; left:101px; top:152px; width:179px; height:31px; background-image: url('game-design2_04.gif');}#game-design2-05 { position:absolute; left:280px; top:152px; width:10px; height:448px; background-image: url('game-design2_05.gif');}#game-design2-06 { position:absolute; left:290px; top:152px; width:399px; height:31px; background-image: url('game-design2_06.gif');}#game-design2-07 { position:absolute; left:689px; top:152px; width:8px; height:448px; background-image: url('game-design2_07.gif');}#game-design2-08 { position:absolute; left:697px; top:152px; width:203px; height:31px; background-image: url('game-design2_08.gif');}#game-design2-09 { position:absolute; left:101px; top:183px; width:179px; height:417px; background-image: url('game-design2_09.gif');}#game-design2-10 { position:absolute; left:290px; top:183px; width:399px; height:417px; background-image: url('game-design2_10.gif');}#game-design2-11 { position:absolute; left:697px; top:183px; width:203px; height:417px; background-image: url('game-design2_11.gif');}--></style> Hope u can help me this is the page it's on
×
×
  • Create New...