<?php
include("expert_class.php");
$expert = new expert_class("curl");
echo "<br /><b>Question Title</b><br />".$expert->question_title; // Title of the best matched question
echo "<br /><b>Question Body</b><br />".$expert->question_body; //Full body of the question(without snippet)
echo "<br /><b>Question Code Snippet</b><br />".$expert->questioncodesnippet; //Question code snippet
echo "<br /><b>Accepted Solution</b><br />".$expert->ans_body; //Full body of the accepted solution(without snippet)
echo "<br /><b>Code Snippet</b><br />".$expert->anscodesnippet; //Answer code snippet
?>
|