Successfully reported this slideshow.
Your SlideShare is downloading. ×

Web development today

Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Loading in …3
×

Check these out next

1 of 16 Ad

More Related Content

Slideshows for you (20)

Advertisement

Similar to Web development today (20)

Recently uploaded (20)

Advertisement

Web development today

  1. 1. http://forloveofsoftware.blogspot.com/ +HeshamAmin https://eg.linkedin.com/in/heshamaamin
  2. 2. www.example.com
  3. 3. http://www.w3schools.com/php/showphpfile.asp?filename=demo_db_select_oo_table
  4. 4. <?php class Category extends AppModel { var $name = 'Category'; } ?> <?php class CategoriesController extends AppController { var $name = 'Categories'; function index() { $this->set('categories', $this->Category->find('all')); } } ?>
  5. 5. <!-- File: /app/views/categories/index.ctp --> <h1>Categories</h1> <table> <tr> <th>Id</th> <th>Title</th> </tr> <?php foreach ($categories as $category): ?> <tr> <td><?php echo $category['Category']['id']; ?></td> <td> <?php echo $html->link($category['Category']['name'], array('controller' => 'categories', 'action' => 'view', $category['Category']['id'])); ?> </td> </tr> <?php endforeach; ?> </table>
  6. 6. http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html
  7. 7. • A1-Injection A2-Broken Authentication and Session Management A3-Cross-Site Scripting (XSS) A4-Insecure Direct Object References A5-Security Misconfiguration A6-Sensitive Data Exposure A7-Missing Function Level Access Control A8-Cross-Site Request Forgery (CSRF) A9-Using Components with KnownVulnerabilities A10-Unvalidated Redirects and Forwards
  8. 8. • HTML5 • Apache Cordova • Ionic • AngularJS • JavaScript • Node JS
  9. 9. Concepts • SW Design • Architecture • Problem solving • Algorithms Tools & Technologies • Libraries • Vendors • IDEs SW Engineering • Planning • Estimation • Methodologies

×