Compilation of Resources

Discussion in 'Web Programming' started by Deacon Frost, Apr 22, 2008.

Thread Status:
Not open for further replies.
Compilation of Resources
  1. Unread #1 - Apr 22, 2008 at 12:49 AM
  2. Deacon Frost
    Joined:
    Jan 30, 2007
    Posts:
    2,905
    Referrals:
    3
    Sythe Gold:
    57

    Deacon Frost Grand Master
    Banned

    Compilation of Resources

    THIS IS NOT MINE. IT IS FROM ANOTHER FORUM. BUT IT IS VERY USEFUL!

    PHP


    PHP 101: PHP For the Absolute Beginner
    http://devzone.zend.com/node/view/id/627

    Server Side Coding : PHP & MySQL Tutorials
    http://www.sitepoint.com/subcat/php-tutorials

    PHP MySQL Tutorial
    http://www.php-mysql-tutorial.com/

    PHP Reference Manual
    http://php.net/

    Learn PHP Free
    http://www.learnphpfree.com/

    The Melonfire Community
    http://www.melonfire.com/community/columns/trog/archives.php?page=2&category=PHP

    Free2Code.com PHP tutorials
    http://www.free2code.net/tutorials/browse/php-2/index.html

    Practical PHP Programming wiki
    http://hudzilla.org/phpwiki/index.php?title=Main_Page

    W3Schools - PHP Tutorial
    http://www.w3schools.com/php/default.asp


    Books

    Build Your Own Database Driven Website Using PHP & MySQL
    http://www.sitepoint.com/books/phpmysql1/

    List of books, by Wrox Press. Click on the PHP/MySQL link.
    http://www.wrox.com/WileyCDA/Section/id-105077.html[/QUOTE]

    MySQL

    The MySQL site:
    MySQL Developer Zone

    Database Normalization:

    One of the most important things of database development is understanding the concepts behind Database Normalization. This means setting up the proper structure of your tables and how they will work together to make your data retrieval as seemless as possible while minimizing data resources necessary to perform the output.

    An intro to database normalization

    Hierarchical Data:

    Managing hierarchical data can be tricky, but once you get an understanding of how to approach it, you will find this an important tool in your database development.

    Managing hierarchical data
    Categories and Subcategories a useful article written on the Adjacency List model.
    Joe Celko's Trees and Hierarchies in SQL for Smarties (I've found this to be a pretty involved book.)

    GUIs:

    Heidi SQL
    Navicat
    MySQL Administrator
    MySQL Query Browser
    phpMyAdmin if you are using PHP as well


    Database Modelling:

    Data Models (note, there are no comments on the designs, just the layouts)

    SQL injection attacks:

    result from unsanitized user input. The article below details one example of how this could be used to gain access to your data by outside users.

    SQL injections

    PHP and MySQL

    An extensive tutorial I found this tutorial to be pretty extensive and quite helpful.

    http://www.apachefriends.org/en/xampp.html (a quick and seemless way to integrate PHP, MySQL, Apache, PERL, PHPMYADMIN on Windows, Solaris, Linux, Mac OS). Note you won't learn how to tune your applications here, but if you are looking to get them set up quickly and jump right in, I personally have found this to be a good set-up on WinXP. Caveat, the discussion boards on the site are in German.

    SQL formatters:

    These allow you to dump in the code you are using for a query and print it out in a much neater form.

    SQLinForm
    Instant SQL Formatter[/QUOTE]

    More to come!

    If you would like to add to this list, please post the site, and a short description!


    If you really want to learn PHP, check out the beginning of Deacon's tutorials. Soon to span all of web development, it is step by step to creating some very nice scripts!
     
  3. Unread #2 - Apr 22, 2008 at 8:35 AM
  4. SidStudios
    Joined:
    Mar 14, 2007
    Posts:
    201
    Referrals:
    0
    Sythe Gold:
    0

    SidStudios Active Member

    Compilation of Resources

    I have the following resources to add to your list:

    SQL Injection: A video on how to use the Information_Schema table to your advantage:
    Code:
    http://sidstudios.org/?media:gamegossip
    And, there's some other stuff which I recommend you take a look at, but I'm not implying you should add this to your list:
    PHP Basics:
    Code:
    http://sidstudios.org/forum/showthread.php?t=48
    I've got some resources on Flash, and they are good tutorials too:
    Code:
    http://sidstudios.org/forum/forumdisplay.php?f=22
    As well as an article on the basics of phishing:
    Code:
    http://sidstudios.org/forum/showthread.php?t=72
    Check it out, and add it if you want. I personally think my article on phishing is pretty good, but it might not fit here.
     
  5. Unread #3 - Apr 22, 2008 at 9:34 AM
  6. Nullware
    Joined:
    Jan 30, 2007
    Posts:
    1,761
    Referrals:
    4
    Sythe Gold:
    0

    Nullware Guru

    Compilation of Resources

    Sythe doesn't support phishing, just remove that portion.
     
  7. Unread #4 - Apr 22, 2008 at 11:22 AM
  8. SidStudios
    Joined:
    Mar 14, 2007
    Posts:
    201
    Referrals:
    0
    Sythe Gold:
    0

    SidStudios Active Member

    Compilation of Resources

    It's a post on what phishing is. Here, I'll hotlink the image just for you.

    [​IMG]
     
  9. Unread #5 - Apr 23, 2008 at 8:49 AM
  10. Deacon Frost
    Joined:
    Jan 30, 2007
    Posts:
    2,905
    Referrals:
    3
    Sythe Gold:
    57

    Deacon Frost Grand Master
    Banned

    Compilation of Resources

    It doesn't support hacking either, but to prevent it, you have to know how it's done.

    How can you stop SQL injection if you don't even know how to work it?

    (I'll add the links you posted)
     
  11. Unread #6 - Apr 23, 2008 at 10:36 AM
  12. SidStudios
    Joined:
    Mar 14, 2007
    Posts:
    201
    Referrals:
    0
    Sythe Gold:
    0

    SidStudios Active Member

    Compilation of Resources

    Exactly. Just like in anything else, lets say, boxing, you need to know your opponent's moves to dodge them.
     
  13. Unread #7 - Apr 23, 2008 at 5:27 PM
  14. Deacon Frost
    Joined:
    Jan 30, 2007
    Posts:
    2,905
    Referrals:
    3
    Sythe Gold:
    57

    Deacon Frost Grand Master
    Banned

    Compilation of Resources

    Yep, it's being prepared. Like studying for a test...

    We don't like hackers, but we like to stop hackers.
     
  15. Unread #8 - Jun 7, 2008 at 8:50 AM
  16. Kin Kong
    Joined:
    Feb 4, 2008
    Posts:
    356
    Referrals:
    0
    Sythe Gold:
    0

    Kin Kong Forum Addict
    Banned

    Compilation of Resources

    I'll Pm you more, if you wish to Add. There Books.
     
  17. Unread #9 - Jun 7, 2008 at 3:57 PM
  18. cp
    Joined:
    Jan 30, 2007
    Posts:
    3,278
    Referrals:
    6
    Sythe Gold:
    0

    cp an cat
    Banned

    Compilation of Resources

    It would be appreciated if you guys could keep the "chatting" out of this thread, and just post links. :)

    Go straight ahead and post links. They do not need to be approved so as long as they are on topic, and are safe.
     
  19. Unread #10 - Oct 15, 2008 at 4:18 AM
  20. Affix
    Joined:
    Oct 15, 2008
    Posts:
    12
    Referrals:
    0
    Sythe Gold:
    0

    Affix Newcomer

    Compilation of Resources

    I highly recommend downloading the PHP Reference Manual to your Desktop. Its available in CHM and PDF format.
     
  21. Unread #11 - Jul 6, 2009 at 10:07 PM
  22. SuF
    Joined:
    Jan 21, 2007
    Posts:
    14,212
    Referrals:
    28
    Sythe Gold:
    1,234
    Discord Unique ID:
    203283096668340224
    <3 n4n0 Two Factor Authentication User Community Participant Spam Forum Participant Sythe's 10th Anniversary

    SuF Legend
    Pirate Retired Global Moderator

    Compilation of Resources

    Ive made a new one. Locked...
     
< Looking for a host [Please Help Me] | Starting Small Growing Large >

Users viewing this thread
1 guest
Thread Status:
Not open for further replies.


 
 
Adblock breaks this site