Jump to content
MakeWebGames

aha2095

Members
  • Posts

    8
  • Joined

  • Last visited

    Never

aha2095's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. aha2095

    PHP

    Some interesting reading, I never knew you could use the old coma... Thanks people :)
  2. aha2095

    PHP

    I use double quotes for HTML and single for PHP usually as it's easier for example:   <?php $haidere= ":P";//This is a comment and you may see that I used a double quote for the variable thats just another thing I do, You can switch between the two. echo '<html> <head> <title> Ummm </title> </head> <div id="You see here!"> <body> HAHAHA DON\'T '; echo $haidere; echo ' </body> </html>'; ?>   Also when something like the word "don't" needs a ' you will need to escape it by putting a \ in front of it so it doesn't interfere with the script.
  3. aha2095

    PHP

    <?php $Variable = "Thanks"; $Variable2 = "Everyone"; echo "$Variable" to "$Variable2" that sent me info on what to do and where to go for my php learning stages ?>   Should actually be:   <?php $Variable = "Thanks"; $Variable2 = "Everyone"; echo $Variable ." to ".$Variable2." that sent me info on what to do and where to go for my php learning stages"; ?>
  4. aha2095

    PHP

    http://www.phpvideotutorials.com/free - Use the old vids then when you have finished use w3scools. http://mccodes.com/viewengine.php?id=2 - Play around with this try to read code and make an add on or two or even make your own website, its better to learn by doing. I am 15 and when you get the hang of it's easy! One last note: If you get stuck google it before asking for help ;)
  5. Theres no id, but is there a battleship kind of system so it can get row and then the cell value?
  6. The background Image behind the links is the one I'm trying to extend - I want to make it the same size as the one next to it. Also likejavascript I'm bad with CSS.
  7. Ok, I'm confused now I thought it was in an iframe as it's the way it was always done but its just the pages being loaded with javascript on click I think (I did say I'm bad with JS right?). So I just need to get information from a HTML table and turn it into a variable.
  8. I'm extremely bad with javascript so I need help getting information from a HTML table that is in an iframe and turning it into a variable. The frame is opened with JS if that could affect it. Thankies for taking the time to read this post!
×
×
  • Create New...