0 Users appreciate this thread.
Tips for a student?
SPCOxion (2013-07-01 03:49:03)1. W3Schools? Hell no.
2. Tyzag is a bit confusing to me, and I personally think of it more as a dictionary or encyclopedia rather than a class-like thingamajig, like TheNewBoston or Codecademy.
klubadmin (2013-07-02 02:54:14)One very handy, yet not necessarily obvious code:
Source Code
<?php $_GET['text']; ?>
<?php $_GET['text']; ?>
This snippet will get a variable from the url. For example, using that code on this imaginary page:
http://website.com/page.php?text=Hi
Will return the string "Hi".
klubadmin (2013-07-07 02:23:56)I believe it is object notation, as opposed to the more common array notation: $row['something']
Ex: $row->something
Though I'm not 100% sure that's completely correct.
(Capt.)Orb (2013-07-14 00:10:28)I think $this is used to basically replace the variable before.
Example
$username=htmlentities($this);
Aviation fact: The a380 is the largest commerical aircraft in service!
Go to Splashiverse! Splashiverse
Go to Splashiverse! Splashiverse
Log in to submit a comment
Back to forum: Web Programming (HTML, JS, CSS, PHP, MySQL)
New registered users today: 8
Newest registered user: Dolce21dsisBack

'Ello. In case you didn't catch the title, I'm learning web programming (PHP at the moment), and I would like some tips. For example, you could suggest sites for me to learn from, or teach me uncommonly used/unpopular (but useful) functions.