Skip to main content

Home/ PHP Programming/ Group items tagged database

Rss Feed Group items tagged

Sarah HL

Building semantic Web CRUD operations using PHP - 0 views

  • When developing a Web application, it's standard practice to create a database structure on which server-side code is placed for the logic and UI layers. To connect to the database, the server-side code needs to do some basic creating, updating, deleting, and — most importantly — reading of records.
    • Sarah HL
       
      Interet du CRUD
  • SPARQL — Simple Protocol and RDF Query Language
    • Sarah HL
       
      PHP works with SPARQK to implement CRUD
  • Why move from SQL to SPARQL? There are many reasons why you would want to move from SQL to SPARQL. The details extend beyond the scope of this article, but you could be motivated by the following points: You want a more distributed data solution. You want to expose your data on the Web for people to use and link to. You may find Node-Arc-Node relationships (triple) easier to understand than relational database models. You may want to understand your data in a pure object-oriented fashion to work with an OOP paradigm (PHP V5 and later supports OOP). You want to build generic agents that can connect to data sources on the Web.
    • Sarah HL
       
      Interest of SPARQL
  •  
    "When developing a Web application, it's standard practice to create a database structure on which server-side code is placed for the logic and UI layers. To connect to the database, the server-side code needs to do some basic creating, updating, deleting
sloansteddi

PEAR::Pager Tutorials - Paginate database results - 0 views

  • Method #2: Pager_Wrapper to the rescue!
  •  
    This tutorial explains how to paginate database results using PEAR::Pager and Pager_Wrapper. The latter is useful, because without it (Pager_Wrapper), you are selecting the ENTIRE result set for each page, which undoes one of the important advantages of paginating.
Richard Boss

Custom Query using Database Object in CakePHP - 0 views

  •  
    In this article, we will see how to use custom query using database object instead of model object?
javatpoints

Introduction to SQL | SQL Tutorial for Beginners and Professional - JavaTpoint - 0 views

  •  
    JavaTpoint Provides a SQL Tutorial for Beginners and Professionals. JavaTpoint Covers a all SQL Topics such as what is SQL, Introduction to SQL, what is database, SQL database,SQL Table etc.
renews_

Doctrine - PHP Object Relational Mapper - 0 views

  •  
    Doctrine is an object relational mapper (ORM) for PHP 5.2.3+ that sits on top of a powerful database abstraction layer (DBAL). One of its key features is the option to write database queries in a proprietary object oriented SQL dialect called Doctrine Query Language (DQL), inspired by Hibernates HQL. This provides developers with a powerful alternative to SQL that maintains flexibility without requiring unnecessary code duplication.
qualitypoint Tech

SEO friendly URL or Pretty URL using Apache mod_rewrite |QualityPoint Technologies - 0 views

  •  
    Consider below url. http://site.com/showtopic.php?id=10 By seeing this url we can understand that this site is developed using php, and we can understand coding/database table upto some extent. For example, if you change id value to some invalid value instead of 10 we will get some error message/query which may give some details about database table.
javatpoints

MySQL Data Types - javatpoint - 0 views

  •  
    MySQL Data Types for beginners and professionals with examples on CRUD, insert statement, select statement, update statement, delete statement, use database, keys, joins etc.
Raúl - [^BgTA^]

Abstracting Database Access Using Polymorphism with Objects in PHP 5 - 0 views

  •  
    Usar polimorfismo en PHP5 para acceder a diferentes BD
jdr santos

AjaxCRUD.com - Use PHP & AJAX to CRUD from a mysql database (create / read / update / d... - 0 views

  •  
    AjaxCRUD is an open-source PHP API which allows you to connect to a mySQL database and easily perform the necessary CRUD operations (create, read, update, & delete rows).
Mr. DiGi

NotORM - 1 views

  • foreach ($software->application() as $application) {    echo "$application[title]\n";    foreach ($application->application_tag() as $application_tag) {        echo "\t" . $application_tag->tag["name"] . "\n";    }}
  •  
    PHP library for simple reading data from the database
javatpoints

Introduction to Mysql | What is MySQL ? - javatpoint - 0 views

  •  
    What is MySQL for beginners and professionals with examples on CRUD, insert statement, select statement, update statement, delete statement, use database, keys, joins etc.
javatpoints

Features of Mysql Tutorial for Beginners - JavaTpoint - 0 views

  •  
    MySQL features for beginners and professionals with examples on CRUD, insert statement, select statement, update statement, delete statement, use database, keys, joins etc.
sloansteddi

How to use PHP and PEAR MDB2 (Tutorial) | David and Katherine Goodwin - 0 views

    • sloansteddi
       
      Prepare takes the $sql (with '?'s where data will go), along with the TYPES (array) of data to prepare the sql for, and a 3rd paramater for manipulating or result-getting (see next paragraph). It assigns this to $prepared_statement. Another array is created with the data (in the same order as the types, of course), and the RESULT is aquired by running the execute() method on the $prepared_statement object, passing the execute method the "$data" array to fill in the '?'s After this do everything as normal.
  • column = ?
  • id = ?
  • ...1 more annotation...
  • I have a feeling that MDB2 lower cases all field names - so you'll probably need : echo $row['name'] A good idea would be to print_r($row) or similar, to see what's in it
  •  
    A great walk through on getting started with MDB2
jdr santos

PHPonTrax - P.O.T. that makes the web go round! - 0 views

  •  
    Php On Trax (formerly Php On Rails) is a web-application and persistance framework that is based on Ruby on Rails and includes everything needed to create database-backed web-applications according to the Model-View-Control pattern of separation.
jdr santos

TinyMVC for PHP - 0 views

  •  
    TinyMVC is an Model-View-Controller application framework for PHP. It provides clear separation between the database operations (Model), the presentation (View), and the glue in between (Controller).
jdr santos

Silk Framework :: Home - 0 views

  •  
    Silk is a fast and concise PHP Framework that simplifies development of PHP applications. It provides services for database interaction, MVC, AJAX and all of the other tools necessary to deliver today's web applications. It's speedy, extendable, dependable and totally buzzword compliant
vlado

MySQL Lite Administrator - 0 views

  •  
    MySql Lite Administrator is a php web application that will help you insert and update stuff in your MySQL Database.
Soniya Patel

The PHP web application has many advantages - 0 views

  •  
    We offer web application with PHP for the development of dynamic database driven website. We have a team of experts, who are ever ready to build an innovative web application development with PHP.
Richard Boss

Basics of WordPress Transients API - 0 views

  •  
    The Transients API is one of the fundamental WordPress APIs. Transients API is pretty similar to options API, but with an added feature of expiration time. To know more more read this article!
sloansteddi

MDB2-Cheatsheet - codeschmie.de - 0 views

  • fetchOne([int $colnum = 0])
  •  
    examples for using MDB2
1 - 20 of 26 Next ›
Showing 20 items per page