PHP Classes

File: esempio.php

Recommend this page to a friend!
  Classes of Pasquale Garofalo   PHP Ask.fm   esempio.php   Download  
File: esempio.php
Role: Example script
Content type: text/plain
Description: Esempio dell'uso della classe
Class: PHP Ask.fm
Retrieve the questions asked to users of Ask.fm
Author: By
Last change: Version 1.3
Date: 9 years ago
Size: 966 bytes
 

Contents

Class file image Download
<?php

   
/**
    *** @Esempio : Esempio dell'utilizzo della classe ask.class.php
    *** @Autore : Pasquale Garofalo
    *** @Versione: 1.3
    *** @Facebook: https://www.facebook.com/garofalop2012
    **/

require_once('ask.class.php');

$ask = new Ask();

$ask->setUser("GarofaloPasquale");

$count = $ask->countContent();

for(
$i = 0; $i < $count; $i++){
   
$post = $ask->getSingleContent($i);
   
    echo
"<div style='border-bottom:1px solid #cecece;'>
        Domanda: "
.$post['title']." <br />
        Risposta: "
.$post['description']." <br />
    </div>"
;
   
}

if(
$ask->userExist()){
   
   
// Utente esistente / User Exist
   
   
for($i = 0; $i < $count; $i++){
       
$post = $ask->getSingleContent($i);
       
        echo
"<div style='border-bottom:1px solid #cecece;'>
            Domanda: "
.$post['title']." <br />
            Risposta: "
.$post['description']." <br />
            <a target='_blank' href='"
.$post['link']."'>Link</a>
        </div>"
;
    }
   
}else{
    echo
"Utente inesistente";
}



?>