Code

Get Hezecom UltimateSpeed PHP Code Generator Ultimate Download

LIVE PREVIEWBUY FOR $35


<div style=”width:590px; font-family: Verdana, Geneva, sans-serif;
font-size: 16px;
color: #333;”>

Hezecom UltimateSpeed is a powerful tool to increase web development productivity, saves alot of time and increase your profit. Instant codes and report generation with beatiful responsive double output, client and admin interface and database management plugin to manage your entire database.

It is a PHP base code generator which generate classes for each table in your database and forms. This app is full of exciting features.All you need to do is just create your database and the Code Generator will do everything with just a single click.

Please check the difference in the editions below.

Hezecom UltimateSpeed Code Generator Features

  1. Fully Responsive two interfaces are generated instantly
    Hezecom UltimateSpeed PHP Code Generator Ultimate - 1

    Conpactible with mobiles with instant report ready

    Hezecom UltimateSpeed PHP Code Generator Ultimate - 2
    Hezecom UltimateSpeed PHP Code Generator Ultimate - 3

  2. New Improved design and code structure
  3. Ready to use dashboard with database statistics
  4. Auto generate charts summary based on record on each table
  5. Admin Panel with Login
  6. Users Management
  7. Users register account themselves and login to manage profile
  8. Users can retrieve lost password
  9. Autocomplete search for each table
  10. Visitors area without Login
  11. Ability to choose between full Ajax forms and none Ajax forms
  12. Well organized codes and documented
  13. Different validation option: HTML5, AJAX and PHP validation
  14. Now have HTML 5 lite Edito
  15. SQL analysis page for each table
  16. Conpactible with mobiles
  17. Database Management. Backup, Restore, Import and Export CSV…
  18. Table Truncate (Empty database table at once)
  19. Modernizer library plugin for older browser compactibily with HTML5 and CSS3
  20. Ajax activity loader
  21. Language file support
  22. Stylish form design with different output
  23. SQL editor. Create comprehensive SQL including table join and generate php codes
  24. Plain and WYSIWYG text editor
  25. WYSIWYG text editor image uploader
  26. Enterprise base conding structure
  27. CRUD Generated
  28. Well arranged folder(MVC format)
  29. HTML, classes, objects and controllers in seprate folders
  30. The arrangement enables you to plug anything into your application
  31. Instant code preview after generating
  32. Bootstrap 3 Support
  33. Jquery notification message
  34. Simple steps (Database Settings, Project Name, Select Tables, Generate and Preview) everything on one page
  35. Generate PDO data objects class for each table
  36. Generated code support multi database connection
  37. Four database operation are generated for each table which include
    (SELECT, INSERT, UPDATE and DELETE)
  38. Option to select between the (Deault Contructor Class / Get and Set Class)
  39. Option to Enable or Disable HTML5 form validation
  40. Detect Date Field from database (Support date picker when the field is date)
  41. Detect Enum field from database (e.g ?Male?, ?Female?) and use as Select Field
  42. Detect (TEXT,MEDIUMTEXT,LONGTEXT,BLOB?etc.) and use as textarea
  43. Detect primary key (AUTO_INCREMENT)
  44. Responsive HTML table
  45. LIVE Search through database
  46. Support LIVE pagination
  47. Export data to Excel spread sheet
  48. Export data to CSV
  49. Export data to PDF
  50. Export data to PRINT
  51. Build in self-defined functions
  52. Option to select table you want to generate code for
  53. Generated codes are commented for easy understanding and editing
  54. File Upload
  55. Image upload and resize
  56. Multiple Image upload and resize
  57. Multiple File upload
  58. Full Documentation

Hezecom UltimateSpeed PHP Code Generator Ultimate - 4

DEMO

http://products.hezecom.com/speed3/UltimateSpeed3/

Super Admin

Username: admin
Password: hezecom

User

Username: admin2
Password: hezecom

Requirement

  • PHP 5+
  • MySQL 5+
  • PDO Driver Enabled
  • GD Library Enabled
  • CHANGELOG

    ===== 25/01/2018 - VERSION 3.3 =====
    - export to CSV issue fix
    - change password bug fix
    
    ===== 12/01/2018 - VERSION 3.2 =====
    - Login issue fix
    
    ===== 05/01/2018 - VERSION 3.2 =====
    - Compatibility with PHP 7.x
    - Now uses dompdf for reporting
    - Better password security
    
    ===== 18/02/2016 - VERSION 3.1 =====
    - some bugs fix
    - library updated
    
    ===== 03/07/2015 - VERSION 3.0 =====
    - New Improved design and code structure
    - Ready to use dashboard with database statistics
    - Auto generate charts summary based on record on each table
    - Users register account themselves and login to manage profile
    - Users can retrieve lost password
    - Autocomplete search for each table
    - Ability to choose between full Ajax forms and none Ajax forms
    - Different validation option: HTML5, AJAX and PHP validation
    - Now have HTML 5 lite Editor
    
    ======= SOME CODE SAMPLE ============
    
    - Select with pagin
    HDB::hus()->Hselect("invoices LIMIT $startpg , $limit");
    
    - no pagin
    HDB::hus()->Hselect("invoices");
    
    - count
    HDB::hus()->Hcount("invoices");
    
    - select all with where and paging
    $bind = array(":id" =>$id);
    HDB::hus()->Hselect("invoices","invoice_id=:id LIMIT $startpg , $limit ",$bind);
    
    - select one
    $bind = array(":id" =>$id);
    HDB::hus()->Hone("invoices","invoice_id=:id",$bind);
    
    - Search
    $bind = array(":svalue" =>"%$qstring%");
    HDB::hus()->Hselect("invoices","invoice LIKE :svalue LIMIT $limit",$bind);
    
    - Delete
    $bind = array(":id" =>$id);
    HDB::hus()->Hdelete("invoices","invoice_id=:id",$bind);
    
    - Insert
    $values = array(array( 'val1'=>$val1,'val2'=>$val2));
    HDB::hus()->Hinsert('invoices', $values);
    
    - Update
    $sql = "  val1 =:val1,val2 =:val2 WHERE id = :id ";
    $data = array(':val1'=>$val1,':val2'=>$val2,':id'=>$id);
    HDB::hus()->Hupdate('invoices',$sql,$data);
    
    - and more
    
    ===== 13/05/2014 - Version 2.0 =====
    - Admin Panel with login. Users management system, create unlimited users with roles.
    Export header_error fix.
    
    - Better code structure to meet MVC standard
    
    - Validation made easier with example on how to on controller page with error handling generated automatically.
    E.g.
    if (post('slug')=='')
    $errors[] = 'A value is required!';
    
    
    - Better pagination structure to accept more gets.
    - You can now export only one record on detail page and all on viewall page
    - Jquery library updated to v1.10.2
    - Bootstrap library updated v3.1.1
    
    ===== 22/12/2013 - Version 1.5 =====
    PHP pagination to handle big data.
    Jquery pagination
    Secured Directory
    

    Hezecom UltimateSpeed PHP Code Generator Ultimate - 5

    ===== 07/11/2013 - Version 1.0 =====
    First release
    

    Hezecom UltimateSpeed PHP Code Generator Ultimate - 6

    Hezecom UltimateSpeed PHP Code Generator Ultimate - 7

    Downloads link

    Leave a Reply

    Your email address will not be published. Required fields are marked *

    Back to top button