Skip to main content

Home/ PHP Programming/ Group items matching "data" in title, tags, annotations or url

Group items matching
in title, tags, annotations or url

Sort By: Relevance | Date Filter: All | Bookmarks | Topics Simple Middle
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.
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
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
qualitypoint Tech

Parsing webpage using php DOM. - 4 views

  •  
    PHP is having DOM functionality for parsing webpage by considering the HTML content of the webpage as XML data. If you assign the $data with the HTML content of the webpage, below code will load the HTML content in DOM object.
javatpoints

MS Excel Tutorial - javatpoint - 0 views

  •  
    MS Excel tutorial for beginners and professionals with topics of ribbon and tabs, quick access toolbar, mini toolbar, buttons, worksheet, data manipulation, formatting, function, formula, vlookup, isna and more .
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!
Yves Leloup

Zebra_Mptt, a PHP class providing an implementation of the modified preorder tree traversal algorithm - 0 views

  •  
    MPTT is a fast algorithm for storing hierarchical data
qualitypoint Tech

Latest Articles for learning Web Development using php, mysql, javascript and ajax - 1 views

  •  
    Find below the latest articles for learning web development. These articles are getting displayed here by combining the data from different social bookmarking sites such as Digg. This articles list will be updated automatically using yahoo pipes and feedburner.
jdr santos

pxWeather - PHP XML Weather Utility - 1 views

  •  
    "A PHP class to retrieve, parse, and organize weather data for easy access."
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
Jungle Jar

JungleJar | Looking at Wordpress Custom Fields and Images Further - 0 views

  •  
    You may remember a previous article I wrote here on JungleJar.com called Using Custom Fields To Post Your Images, but if not, I'm going to reintroduce a few of the code snippets and methods I wrote about in the tutorial about how to save and display image data from custom fields within Wordpress. In this article I'm also going to cover a few of the small yet robust code block methods I myself tend to practice quite a bit that I didn't previously touch on. So, if you're looking for a solid tutorial on how to use Wordpress Custom Fields to display blog post thumbnails in an easy and flexible manner, then this article is for you.
sloansteddi

MDB2 | Prepare & Execute - 0 views

  •  array('integer'), array('text', 'text')
    • sloansteddi
       
      Make sure to pass TWO types arrays when selecting data with a where clause: prepare($sql, $typesIN, $typesOUT) inserting just takes one...
  • $sth = $mdb2->prepare('INSERT INTO numbers (number) VALUES (?)', array('integer'), MDB2_PREPARE_MANIP); $sth->execute(1); $sth->execute(8);
  •  
    walk through of preparing and executing statements
kunshtech

Informative link for Web Application Development in 6 quick steps - 0 views

  •  
    Kunsh Technologies - Web & Mobile Application Development Company comprises a three-tiered software development model which includes users, business, and data services in 6 easy steps to make appropriate Web Application for their end users.
1 - 13 of 13
Showing 20 items per page